Problem
1. Write a program that prints the characters of a string "Ali" separately
2. Use the slicing method to print "me" from the string "welcome"
3. Write a Python program to display the last color from the following list. color_list = ["Red", "Green", "White"]
4. Write a Python program that asks the user to enter a floating point number, then print the data type of the entered data.
5. Write a Python program that asks the user to enter a string, then print the number of characters were entered.
6. Write a Python program that asks the user to enter a number, then print "odd" if the number is not divisible by 2.
7. Write a Python program to check if the first and last number of a list is the same, without knowing the length of the list.