0
Can someone tell what is the bug Actually it asks for Mary then Robert then Anna but how to put them all together?
# Take the name as input name = "Mary" # Use concatenation to join 2 strings message = "Nice to meet you, " + name # Display the message to the user print(message)
1 Answer
+ 6
See the comment carefully, in the first comment already suggest you should input the name instead of store the name
name = input()