This document outlines 20 Python programs for practical file handling and data structures. Some of the programs include: displaying a welcome message, comparing numbers, generating patterns with loops, calculating exponents, checking for perfect/armstrong/palindrome numbers, finding factors and Fibonacci sequences, analyzing characters in strings, searching lists and tuples, and displaying student names from a dictionary based on marks. The programs provide examples of fundamental programming concepts like input/output, conditionals, loops, functions, lists, tuples, dictionaries and more.
This document outlines 20 Python programs for practical file handling and data structures. Some of the programs include: displaying a welcome message, comparing numbers, generating patterns with loops, calculating exponents, checking for perfect/armstrong/palindrome numbers, finding factors and Fibonacci sequences, analyzing characters in strings, searching lists and tuples, and displaying student names from a dictionary based on marks. The programs provide examples of fundamental programming concepts like input/output, conditionals, loops, functions, lists, tuples, dictionaries and more.
2. Input two numbers and display the larger / smaller number. 3. Input three numbers and display the largest / smallest number. 4. Generate the following patterns using nested loop (any two). Pattern-1 Pattern-2 Pattern-3 * 12345 A ** 1234 AB *** 123 ABC **** 12 ABCD ***** 1 ABCDE
5. Given two integers x and n, compute 𝑥n.
6. Write a program to input the value of x and n and print the sum of the following series (any three):
7. Determine whether a number is a perfect number, an armstrong number or a palindrome.
8. Input a number and check if the number is a prime or composite number. 9. Display the terms of a Fibonacci series. 10. Compute the greatest common divisor and least common multiple of two integers. 11. Count and display the number of vowels, consonants, uppercase, lowercase characters in string. 12. Input a string and determine whether it is a palindrome or not; convert the case of characters in a string. 13. Find the largest/smallest number in a list/tuple 14. Input a list of numbers and swap elements at the even location with the elements at the odd location. 15. Input a list/tuple of elements, search for a given element in the list/tuple. 16. Input a list of numbers and test if a number is equal to the sum of the cubes of its digits. Find the smallest and largest such number from the given list of numbers. 17. Create a dictionary with the roll number, name and marks of n students in a class and display the names of students who have marks above 75.