Python: Join String
Adjacent Strings Automatically Joins
# adjacent string auto joins x = "some" "thing" print(x) # "something"
The strings can be quoted in different ways, or with different prefix.
# adjacent strings auto joins xx = "a" 'b' r"c" """some""" print(xx) # abcsome
Join String (Operator)
str1 + str2-
xx = "aa" + "bb" print(xx) # "aabb"