Why can't I pass chatbot v1.1? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
30th Sep 2023, 12:08 PM
Jay Pham
Jay Pham - avatar
8 Answers
+ 9
Jay Pham , if you follow the hint to insert a space *after* the comma, the code will run properly and pass the test cases. > if you still have trouble, please post your latest code version here. btw: some hints to your code: name = input() message = "Nice to meet you, " # there is no need to use parenthesis here a = message + name # there is no need to use parenthesis here print (a) # do not use a space between print and parenthesis
30th Sep 2023, 7:30 PM
Lothar
Lothar - avatar
+ 7
Already many people ask this question, use search bar in discussion forum and **🇦🇪|🇦🇪** gives you correct answer https://www.sololearn.com/Discuss/3213833/?ref=app
30th Sep 2023, 1:38 PM
Sakshi
Sakshi - avatar
+ 5
I think there must be space after the comma message = "Nice to meet you, " + name print (message)
30th Sep 2023, 12:37 PM
**🇦🇪|🇦🇪**
**🇦🇪|🇦🇪** - avatar
1st Oct 2023, 1:10 PM
**🇦🇪|🇦🇪**
**🇦🇪|🇦🇪** - avatar
+ 1
Thank you so much
3rd Oct 2023, 3:37 PM
Jay Pham
Jay Pham - avatar
0
It's doesn't work
30th Sep 2023, 1:25 PM
Jay Pham
Jay Pham - avatar
0
My code version is python 3
1st Oct 2023, 9:12 AM
Jay Pham
Jay Pham - avatar
0
Their version is python 2
1st Oct 2023, 9:13 AM
Jay Pham
Jay Pham - avatar