So far you have only been using print to ____ text; your program currently lacks the ability to ____ with the user. In this section you will be using ____ to ____ the user to enter some ____. input will put a message on the ____, wait for the user to give a ____ and press ____, and then ____ the response as text in a ____ so you can use it in your program. print and input are examples of ____. Functions are ____ programs which are typically created to perform a single ____. Python has many ____ functions allowing you to perform a large range of ____. Add the following ____ to the bottom of your program to use input to capture the user’s name and store it in a ____.users_name = ____ is your name? ") Breaking down this line of code you can see what each ____ does: users_name = creates a variable called users_name and ____ it a value ____ uses the ____ input to display a ____ and ____ the user’s response "What is your name? " – the value between the () – is the prompt which will be ____ to the screen Now the text the user entered is ____ in an variable ____ you can use the data in your program. Lets use ____ to output the user’s name. print(users_name) Improve the output by ____ some text to the start and end of the ____. print("Hello " + users_name + ", ____.") Ask a friend to run your program and ask them to ____ their name. Note: you should enter your name in the ____ after the “What is your name?” prompt and press ____ when you have done so. print("Hi, I am ____, your personal bot.") users_name = input("What is ____ name? ") print(users_name) print("Hello " + ____ + ", welcome.")

Getting input from the user missing word

Leaderboard

Visual style

Options

Switch template

Continue editing: ?