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.
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.
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.