PWP PR QB bank
PWP PR QB bank
Write a program to check the largest number among the three numbers
Write a program that takes the marks of 5 subjects and displays the grades.
The following program uses a nested for loop to find the prime numbers from 2 to 100
Write a Python program that takes a number and checks whether it is a palindrome or not.
Write a Python program to print all even numbers between 1 to 100 using while loop.
Write a Python program to create a set, add member(s) in a set and remove one item from set.
4) Write a Python program to find maximum and the minimum value in a set.
Write a Python program to perform following operations on set: intersection of sets,union of sets, set difference, symmetric difference, clear a
Write a Python program to perform following operations on set: intersection of sets, union of sets, set difference, symmetric difference, clear a
Write a Python program to combine two dictionary adding values for common keys.
d1 = {'a': 100, 'b': 200, 'c':300}
d2 = {'a': 300, 'b': 200, 'd':400}
Write a Python function that takes a number as a parameter and check the number is prime or not
Write a Python function to calculate the factorial of a number (a non-negative integer). The function accepts the number as an argument.
Write a Python function that accepts a string and calculate the number of upper case letters and lower case letters.
Write a Python program to create a user defined module that will ask your college name and will display the name of the college.
Write a Python program to define a module to find Fibonacci Numbers and import the module to another program.
Write a Python program to display calendar of given month using Calendar module.
Write a python program to calculate area of circle using inbuilt Math module.
create your own package in Python
Write a Python program to create a class to print the area of a square and a rectangle. The class has two methods with the same name but different number of par
printing area of rectangle has two parameters which are length and breadth respectively while the other method for printing area of square has one parameter w
Write a Python program to create a class 'Degree' having a method 'getDegree' that prints "I got a degree". It has two subclasses namely 'Undergraduate' and Post
method with the same name that prints "I am an Undergraduate" and "I am a Postgraduate" respectively. Call the method by creating an object of each of t
Write Python program to read and print students information using single inheritance..
Write a Python program to create DataFrame using list or dictionary using Panda.
Write GUI program to import Tkinter package and create a window and set its title.