String concatenation in Python

Question:
Create two strings, concatenate them, and print the resulting string. Can you add a space between them using concatenation?

Answer:

str1="hello"
str2="world"
print(str1 + str2)
print(str1 + " " + str2)