0
How to solve chat box v.1.0
They ask to display multiple names. I am not sure how to do this.
3 ответов
+ 3
You should always tag your question with the relevant programming language and lesson that your question pertains to.
Chatbox v. 1.0 is simply asking for user input and printing the user input out to the screen.
This code contains errors but once you fix the errors it will work:
# Ask the user for input and store it in a variable
name = input
# Display the user input on the screen
print (name)
+ 1
Go! introduction to python is waiting for you!
learn from there cuz this problem will never occur if you have understand the introduction to python
+ 1
jasmine steele the Code Coach test cases provide the inputs as if a user were typing input at the console. It will run your program once for each test case and provide the input each time. Your program should receive console input instead of hard-coding the answers.