0
Why can't I pass chatbot v1.1?
8 Respostas
+ 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
+ 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
+ 5
I think there must be space after the comma
message = "Nice to meet you, " + name
print (message)
+ 1
Thank you so much
0
It's doesn't work
0
My code version is python 3
0
Their version is python 2