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 Answers
+ 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.