187k views
1 vote
What is the output of this line of code?

print("hello"+"goodbye")
-"hello"+"goodbye"
-hello + goodbye
-hello goodbye
-hellogoodbye

User Thaks
by
4.2k points

1 Answer

0 votes
The first one
“hello” + “goodbye”
User Daniel Rosenwasser
by
5.0k points