Develop a program to read the student details like Name, USN, and Marks in three subjects. Display the student details, total marks and percentage with suitable messages.
Write a function named DivExp which takes TWO parameters a, b and returns a value c (c=a/b). Write suitable assertion for a>0 in function DivExp and raise an exception for when b=0. Develop a suitable program whichreads two values from the console and cal
Implement Python Script to generate Prime numbers series up to N.
Develop a program to generate Fibonacci sequence of length (N). Read N from the console.
Write a function to calculate factorial of a number. Develop a program to compute binomial coefficient (Given N and R).
Develop a Python Program to find out the area of triangle, square and rectangle
Read N numbers from the console and create a list. Develop a program to print mean, variance and standard deviation with suitable messages.
Develop a program to sort the contents of a text file and write the sorted contents into a separate text file. [Hint: Use string methods strip(), len(), list methods sort(), append(), and file methods open(), readlines(), and write()]
Read a multi-digit number (as chars) from the console. Develop a program to print the frequency of each digit with suitable message.
Develop a program to backing Up a given Folder(Folder in a current working directory)into ZIP File by using relevant modules and suitable methods.