Question: Enter integer (32 - 126) : 99 Enter float: 3. 77 Enter character: Z Enter string: Howdy 99 3.77 z Howdy Howdy z 3. 77

Enter integer (32 - 126) : 99 Enter float: 3. 77 Enter character: Z Enter string: Howdy 99 3.77 z Howdy Howdy z 3. 77 99 99 converted to a character is c 247772.2006038.qx3zqy7 LAB ACTIVITY 1.23.1: LAB: Warm up: Variables, input, and type conversion 0 /5 main.py Load default template... 1 user_int = int(input('Enter integer (32 - 126): \ ')) WNH # FIXME (1): Finish reading other items into variables, then output the four values on a single line separated by a space 5 # FIXME (2): Output the four values in reverse 7 # FIXME (3): Convert the integer to a characer, and output that character 9 user_int = int(input('Enter integer (32 - 126): \ ')) 10 user_float = float(input('Enter float: \ ')) 11 user_character = input('Enter character : \ ' ) 12 user_string = input('Enter string: \ ') 13 print(user_int , user_float , user_character , user_string) 14 print(user_string , user_character , user_float , user_int) 15 print(user_int 'converted to a character is' chr(user_int))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
