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 which reads two values from the console and ca
Write a Python program to compute the stress, strain, and Young's modulus of a material.
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 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 (), read lines (), 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 a ZIP File by using relevant modules and suitable methods.