Module 1 Lab 1

.JPG

School

Southern New Hampshire University *

*We aren’t endorsed by this school

Course

-140-X3921

Subject

Computer Science

Date

Dec 6, 2023

Type

JPG

Pages

1

Uploaded by PresidentMousePerson992

Report
LAB 1 2 3 4 5 6 7 8 el 10 11 12 activiry | 1-25.1: LAB: Warm up: Variables, input, and type conversion 5/5 main.py Load default template... user_int = int(input('Enter integer (32 - 126):\n')) user_float = float(input('Enter float:\n')) user_character = input('Enter character:\n') user_string = input('Enter string:\n') print(user_int, user_float,user_character,user_string) print(user_string,user_character, user_float,user_int) print(user_int, 'converted to a character is',chr(user_int)) # FIXME (1): Finish reading other items into variables, then output the four values on a single line separated by a space # FIXME (2): Output the four values in reverse # FIXME (3): Convert the integer to a character, and output that characten When done developing your program, press the Submit for grading button below. This will submit your program for auto-grading.
Discover more documents: Sign up today!
Unlock a world of knowledge! Explore tailored content for a richer learning experience. Here's what you'll get:
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help