I was playing with python and I realized we don't need to use '+' operator to concatenate static strings. But it fails if I assign it to a variable.
For example:
string1 = 'Hello' 'World' #1 works fine
string2 = 'Hello' + 'World' #2 also works fine
string3 = 'Hello'
string4 = 'World'
string5 = string3 string4 #3 causes syntax error
string6 = string3 + string4 #4 works fine
Now I have two questions: