Python exampal program

Give the solution of the apthon exampsl prectical

  1. Write a program to create a number converter that can convert numbers between binary, decimal,
    octal and hexadecimal.
    E.g. i/p - Please Enter the base of your input number : 2 Please Enter Binary number : 1111 Please
    Enter Base for your output number : 8 O/p- 1111 in octal is:0o17
  2. Write a program to check the data type of the input.
  3. Write a program to solve a quadratic equation.
  4. Write a program to perform addition on two lists and print it in third.
    E.g. i/p - L1 = [ 1,2,3,hello,2.5] L2 = [1,2,3,Hi,2.2] o/p - [ 2,4,6,helloHi,4.7]
  5. Write a program to read a string and print a number of unique characters from the string using set
  6. Write a program to print a multiplication table using for and while loop.
  7. Write a program to print LCM (Lowest Common Multiple).
  8. Write a program to find the Highest common factor.
  9. Write a program to make a calculator using a function.
  10. Write a program to print elements which are in even and odd positions.
  11. Write a program to compare two lists.
  12. Write a program to convert a list to set.
  13. Write a program to create a dictionary,convert the dictionary to list.
  14. Write a program to display Fibonacci using recursion.
  15. Write a program to check whether the entered number is Armstrong or not.
  16. Write a program to check whether the entered number is prime or not.
  17. Write a program to print following pyramid
  • **
  1. Write a program to print following pyramid
    1
    22
    333
    4444
    55555
  2. Write a program to print following pyramid

    **