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.