02-09-01 i/o - input
Ace your homework & exams now with Quizwiz!
Write a statement that reads a string value from standard input into firstWord.
firstWord = input()
Given a variable named line1, read the next line from stdin and save it in line1.
line1 = input()
Write a statement that reads a float value from standard input into the variable temperature.
temperature = eval(input())
Write a statement that reads an integer value from standard input into a variable called val.
val = eval(input())