Python 10 Mr. Husch
Aim: Analyze the raw_input () command Practice sequences that utilize new commands
Lesson Overview This lesson illustrates the raw_input () command structure. If we put a string into the parentheses, it will prompt the user to enter that information and store it as the variable it is associated with.
Main Idea X = raw_input (age?) You should understand that if we place a string inside the parentheses, it will generate a prompt and associate that information with the variable. For example: X = raw_input (age?) Would ask the user “age?” and when they enter it, it would store that number under variable X.
Create this, save as lastname_python10 Create this, save as lastname_python10. You will need to add an additional 5 raw inputs as well.