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 RĂ©ponses
+ 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.