Assignments: Odd Even String
Directions: An even number has a remainder of zero when being divided by two. An odd number is any number that does not have a remainder of zero when being divided by two. Remember modulus division with "%"? Write a Python program that will ask the user for a string (not a number) and then use the number of characters in the string to print out whether that value is odd or even. Test your code with several inputs to confirm that your program outputs the correct answer for all strings.