2. Explain python building blocks with the help of an example. 3. Define indentation in python with the help of a program. 4. Explain modes of working in python. 5. Write a simple python program to display your name. 6. Describe python data types with the help of an example. 7. Explain how to take input from user in python ? 8. Define operators in python . List out all different types of operators. 9. Write a program to perform arithmetic operation . Take input from user. 10.Explain relational operators with the help of a program. 11.Explain logical operator with the help of an example. 12.Explain membership operator with help of an example. 13.Write a program to perform identity operator in python. 14.Explain control flow statement in python. 15.Write a program to find our largest number among three numbers using nested if statement. 16.Write a program to check whether a number is prime or not . Take input from user. 17.Explain looping in python. Write a program to print 1 to 100 using while loop and for loop both. 18.Write a program to print even and odd number from 1 to n using for loop . 19.Define break and continue with the help of an example. 20.Define data structure in python. 21.Explain lists in python with its operation. 22.List out built-in list functions. 23.What is the difference between list and tuples. 24.Write a program to accept N numbers in list . Computer maximum in list , minimum in lists , sum and average in list. 25.How to create a tuple ? How to access values and deleting values in tuples ? 26.Describe basic tuple operations. 27.Explain with the help of an example basic built-in tuple functions. 28.Define sets and how to create a set ? 29.How to access values in set and deleting values in sets. 30.Explain basic set operations with the help of an example. 31.Explain dictionary with the help of an example. 32.Write a program to perform built-in string functions. 33.Define function . What is the difference between system defined and user defined function in python ? 34.How to create and call a user defined function in python ? Explain with the help of a program. 35.Define a function to add two numbers using function. 36.How to pass parameters in function ? 37.Explain scope of variables in python . 38.Write a python program to swap two numbers using function. 39.Explain modules in python. 40.Write a module to check prime number. 41.List out any 4 built-in python and explain any one of them. 42.Explain packages with the help of an example. 43.List out the features of object oriented programming . 44.Describe classes and object with the help of an example. 45.Explain inheritance with the help of an example. 46.Describe polymorphism in python. 47.Explain method overloading with the help of an example. 48.Explain method overriding with the help of an example. 49.Write a short note on data hiding and data abstraction. 50.Define file handling. How to open a file in python ? 51.How to access a file in python using library functions ? 52.Write a program to perform different file operations like rename , delete , read and write. 53.Explain exception handling . Define try and excep block . 54.Write a program to raise an exception divided by zero using user defined exception. 55.State use of namespace in python. 56.Describe bitwise operators in python with the help of an example. 57.What is command line argument ? Write a program to take two numbers input from user using command line argument and print its sum . 58.Write a python program to read contents from abc.txt and write same content to pqr.txt. 59.Compare list and dictionary.