Write the Python code in your practical record copy and display the output in the blank page.
Use a separate page for each program.
Q1. Input a welcome message and display it.
Q2. Input two numbers and display the larger/smaller number.
Q3. Input three numbers and display the largest/smallest number.
Q4. Generate the following patterns using nested loop.
Pattern-1 Pattern-2 Pattern-3
* 12345 A
** 1234 AB
*** 123 ABC
**** 12 ABCD
***** 1 ABCDE
Q5. Write a program to check if a number is a perfect number or not.
Q6. Write a program to find the number is Armstrong or not.
Q7. Write a program to input a number and check if it is a palindrome number or not.
Q8. Input a number and check if the number is a prime or composite number.
Q9. Display the terms of a Fibonacci series.
Q10. Compute the greatest common divisor and least common multiple of two integers.
Q11. Count and display the number of vowels, consonants, uppercase, lowercase characters in string.
Q12. Input a string and determine whether it is a palindrome or not.
Q13. Find the largest/smallest number in a list/tuple.
Q14. Input a list/tuple of elements, search for a given element in the list/tuple.
Q15. Input a list of numbers and find the smallest and largest numbers from the list.
[Link] 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.
Project- Write Python program to make a calculator in the blank page and display the
output.