The document lists 16 experiments related to programming concepts like input/output, conditionals, recursion, functions, data structures, and file handling. The experiments cover topics such as displaying messages, finding largest numbers, checking for leap years, generating patterns, calculating factorials and Fibonacci series, checking for palindromes, converting strings to lists, finding factors and GCD of numbers, checking for prime numbers, finding largest numbers in lists and tuples, and reading/writing CSV files.
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)
13 views
Python Index
The document lists 16 experiments related to programming concepts like input/output, conditionals, recursion, functions, data structures, and file handling. The experiments cover topics such as displaying messages, finding largest numbers, checking for leap years, generating patterns, calculating factorials and Fibonacci series, checking for palindromes, converting strings to lists, finding factors and GCD of numbers, checking for prime numbers, finding largest numbers in lists and tuples, and reading/writing CSV files.
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/ 2
INDEX
Page Sno List of Experiment Date Signature no.
1 Input a welcome message and display it.
2 Input two numbers and display the largest
3 Input three numbers and display the largest
Write a program that reads an integer value and
4 print leap year or not a leap year Write a program to create the following pattern. * 5 ** *** **** Write a function that takes an integer input and 6 calculate the factorial of that number. Write a function that takes a string input and 7 checks if it is palindrome or not. write a list function to convert a string into a list as 8 in list (-abc) gives [‘a’ ,’b’ ,’c’] Write a program to generate Fibonacci series using 9 Recursion.
10 Write a program to print factor of given number.
11 Write a method to calculate GCD of two numbers.
Write a program Input a number and check if the
12 number is a prime or not.
13 Find the largestnumber in a list.
14 Find the largest number in a tuple
15 Write a program to Reading data from CSV Files.