0
What am I doing wrong?
I’m working on Chatv1p1 in Python. I’m having trouble solving all 3 test cases without it marking the other 2 wrong. I’ve tried them altogether and individually and it either says all are wrong when I do them altogether and one is right when I do just a single test case. I’m very new to this and it’s driving me crazy, am I missing something to separate out the test cases? Any help is appreciated! https://code.sololearn.com/c5rQmKmtZD0U/?ref=app
4 Antworten
+ 4
Alicia Smith ,
if you still having issues, post your latest / current code here.
+ 2
i think you have to use the input function.
name = input()
message = „Nice to meet you, „ +name
0
Thank you! That makes total sense. Its still however marking it wrong. It is printing all 3 outputs in the same test case and marking it incorrect. Is there a way to separate these so it solves all 3?
0
name = input()
message = "Nice to meet you, " + name
print(message)
thats the complete code then all 3 are solved.