Hi Everyone,
Welcome to "Simple Edu Talk" Channel.
Here I will provide for you NPTEL THE JOY OF COMPUTING USING PYTHON, PROGRAMMING IN JAVA AND PROBLEM SOLVING THROUGH PROGRAMMING IN C All Assignment Quiz Answers.
So please subscribe this channel and press the bell icon to get new video Notification first and then you can watch new assignment answers video.
Follow Us:-
Telegram Channel Link..
https://t.me/simpleedutalk
Facebook:-
/ simpleedutalk
Twitter:-
/ simpleedutalk1
Website Link : https://nptelcodes.blogspot.com/
All codes link : https://nptelcodes.blogspot.com/2022/...
#SimpleEduTalk #NPtelJoyWeek8programming #Joyweek8programminganswers
the joy of computing using python
nptel the joy of computing using python week 8
nptel the joy of computing using python assignment answers
nptel the joy of computing using python week 8 programming answers
the joy of computing using python week 8 programming answers
Topic
Week 8: Programming Assignment 1
Given a Tuple T, create a function squareT which accepts one argument and returns a tuple containing similar elements given in tuple T and its sqaures in sequence.
Input:
(1,2,3)
Output :
(1,2,3,1,4,9)
Explanation:
Tuple T contains (1,2,3) the output tuple contains the original elements of T that is 1,2,3 and its sqaures 1,4,9 in sequence.
Week 8: Programming Assignment 2
Given a string S, write a function replaceV that accepts a string and replace the occurrences of 3 consecutive vowels with _ in that string. Make sure to return the answer string.
Input:
aaahellooo
Output:
hell
Explanation:
Since aaa and ooo are consecutive 3 vowels therefor replaced by _ .
Week 8: Programming Assignment 3
Given a list L, write a program to shift all zeroes in list L towards the right by maintaining the order of the list. Also print the new list.
Input:
[0,1,0,3,12]
Output:
[1,3,12,0,0]
Explanation:
There are two zeroes in the list which are shifted to the right and the order of the list is also maintained. (1,3,12 are in order as in the old list.)
Thank you 🌹🌹