NPTEL The Joy of Computing Using Python Week 12 Assignment 2023

NPTEL The Joy Of Computing Using Python Week 12 Assignment

NPTEL Course a fun filled whirlwind tour of 30 hrs, covering everything you need to know to fall in love with the most sought after skill of the 21st century. The course brings programming to your desk with anecdotes, analogies and illustrious examples. Turning abstractions to insights and engineering to art, the course focuses primarily to inspire the learner’s mind to think logically and arrive at a solution programmatically. As part of the course, you will be learning how to practice and culture the art of programming with Python as a language. At the end of the course, we introduce some of the current advances in computing to motivate the enthusiastic learner to pursue further directions. The Joy of Computing using python is a fun filled course offered by NPTEL.

The Joy Of Computing Using Python Week 12 Assignment 2023

INTENDED AUDIENCE :  Any interested audience
PREREQUISITES :  10th standard/high school
INDUSTRY SUPPORT :  Every software company is aware of the potential of a first course in computer science. Especially of a first course in computing, done right.

Course Layout

  • Motivation for Computing
  • Welcome to Programming!!
  • Variables and Expressions : Design your own calculator
  • Loops and Conditionals : Hopscotch once again
  • Lists, Tuples and Conditionals : Lets go on a trip
  • Abstraction Everywhere : Apps in your phone
  • Counting Candies : Crowd to the rescue
  • Birthday Paradox : Find your twin
  • Google Translate : Speak in any Language
  • Currency Converter : Count your foreign trip expenses
  • Monte Hall : 3 doors and a twist
  • Sorting : Arrange the books
  • Searching : Find in seconds
  • Substitution Cipher : What’s the secret !!
  • Sentiment Analysis : Analyse your Facebook data
  • 20 questions game : I can read your mind
  • Permutations : Jumbled Words
  • Spot the similarities : Dobble game
  • Count the words : Hundreds, Thousands or Millions.
  • Rock, Paper and Scissor : Cheating not allowed !!
  • Lie detector : No lies, only TRUTH
  • Calculation of the Area : Don’t measure.
  • Six degrees of separation : Meet your favourites
  • Image Processing : Fun with images
  • Tic tac toe : Let’s play
  • Snakes and Ladders : Down the memory lane.
  • Recursion : Tower of Hanoi
  • Page Rank : How Google Works !!

The Joy Of Computing Using Python 2023

Programming Assignment 1

Question 1 : Write a program to take an integer as the input and reverse that integer.

Input:
A single integer.

Output:
Reverse number of that integer.

				
					a = int(input())
l = list(str(a))
l.reverse()
print(int(''.join(l)),end="")
				
			

The Joy Of Computing Using Python 2023

Programming Assignment 2

Question 2 : Take a list of strings as an input and write a program to write sort the list of strings on the basis of last character of each string.
If last character is same, consider the second last character and so on.

Input:
L = [‘ram’, ‘shyam’, ‘lakshami’]

Output:
[‘lakshami’, ‘ram’, ‘shyam’]

				
					lst = [x[::-1] for x in input().split()]
lst.sort()
print([y[::-1] for y in lst],end='')
				
			

The Joy Of Computing Using Python 2023

Programming Assignment 3

Question 3 : Take a student’s email id as an input in the format [email protected] and write a program to find the roll number and institute name of the student.

Input:
[email protected]

Output:
roll institute

				
					a = input()
b = a.split('.')

r = b[0].split('@')[0]
i = b[0].split('@')[1]

print(r, i,end='')