The document contains a list of 25 Python programming practical exercises for students in Class 11. The exercises include programs to convert temperatures between Celsius and Fahrenheit, calculate sums and patterns, find averages and extremes of numbers, determine if numbers are prime or palindromic, generate patterns with loops, calculate series sums, count characters in strings, search and sort lists/tuples, and create and manipulate dictionaries. The programs cover a range of fundamental Python skills like conditionals, loops, strings, lists, tuples, and dictionaries.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
18 views1 page
Practical List XI 2023-24
The document contains a list of 25 Python programming practical exercises for students in Class 11. The exercises include programs to convert temperatures between Celsius and Fahrenheit, calculate sums and patterns, find averages and extremes of numbers, determine if numbers are prime or palindromic, generate patterns with loops, calculate series sums, count characters in strings, search and sort lists/tuples, and create and manipulate dictionaries. The programs cover a range of fundamental Python skills like conditionals, loops, strings, lists, tuples, and dictionaries.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1
International Indian School-Dammam
Department of Computer Science
Class : XI, Practical List ( 2023-24)
Python Programming
1. Program to convert temperature in degree Celsius to degree Fahrenheit
2. Program to calculate the amount payable (Amount payable = Principal + SI) 3. Program to enter two integers and perform all arithmetic operations on them 4. program to find average of three numbers 5. Program to input two numbers and display the larger/smaller number 6. Program to input three numbers and display the largest/smallest number 7. Program to display a menu for calculating area of a circle or perimeter of a circle. 8. Program that reads two numbers and an arithmetic operator and displays the computed result / Program to create a simple calculator performing only four basic operations. 9. Program that reads three numbers (integers) and prints them in ascending order. 10. Program to calculate and print the sums of even and odd integers of the first n natural numbers. 11. Program to input a number and check if the number is a prime or composite number. 12. Program to display the terms of a Fibonacci series 13. Program to compute the greatest common divisor and least common multiple of two integers 14. Program to determine whether a number is a perfect number, an armstrong number or a palindrome. 15. Program to generate the following patterns using nested loop.
Pattern-1 Pattern-2 Pattern-3
* 12345 A ** 1234 AB *** 123 ABC **** 12 ABCD ***** 1 ABCDE 16. Program to find sum of the series 1 + x+ x2+ x3+…….+xn 17. Program to find sum of the series 1 - x+ x2 - x3+…….xn 18. Program to count and display the number of vowels, consonants, uppercase, lowercase characters in string. 19. Program to input a string and determine whether it is a palindrome or not 20. Program to convert the case of characters in a string. 21. Program to find the largest/smallest number in a list/tuple 22. Program to Input a list of numbers and swap elements at the even location with the elements at the odd location 23. Program to input a list/tuple of elements, search for a given element in the list/tuple. 24. Program to input a list of numbers and find the smallest and largest number from the list. 25. Program to Create a dictionary with the roll number, name and marks of n students in a class and display the names of students who have scored marks above 75