Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (2.2k points)

str1 = "Hello"

str2 = 'there'

bob = str1 + str2

print(bob)

The output of the above Python program will be: Hellothere

str1 = "Hello"

str2 = 'there'

bob = str1 + str2

print(bob)

 

1 Answer

0 votes
by (3.9k points)

str1 = "Hello"

str2 = 'there'

bob = str1 + str2

print(bob)

The output of the above Python program will be: Hellothere

str1 = "Hello"

str2 = 'there'

bob = str1 + str2

print(bob)

Output>>>> Hellothere

If you wish to get started with Python, check out Intellipaat’s Python certification course. Also, watch the following video on Python Interview Questions to help you initiate your Interview preparation.

Related questions

Browse Categories

...