0

How to solve chat box v.1.0

They ask to display multiple names. I am not sure how to do this.

28th May 2024, 10:11 PM
jasmine steele
3 Answers
+ 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)
29th May 2024, 12:19 AM
Keith
Keith - avatar
+ 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
29th May 2024, 9:11 AM
Alhaaz
Alhaaz - avatar
+ 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.
29th May 2024, 1:35 PM
Brian
Brian - avatar