+ 1

I created a variable with the it called as "name". I need to congregate it with a string before it and a string after it

code: print ("Enter name.") name = str(input()) print ("Hi!, my name is chatbot 1.0. Is "+ name" your name?") __________________________________________________________________ it shows "syntax error" in the print statement at the quotation mark at the start of the print statement..

16th Dec 2023, 4:15 PM
Veera Ishaan
Veera Ishaan - avatar
2 Answers
0
Veera Ishaan , Please add a Python tag to the discussion. input() returns a string, so you don't need to convert it to a string. # redundant name = str(input()) # efficient name = input()
17th Dec 2023, 8:02 AM
Rain
Rain - avatar