When I began programming, the first thing I did was print Hello World! print("Hello World!") Then I learned about storing strings to variables a = "hello" b = "world!" But I didn't know how to combine the 2 words. Until I learned the + operator. + ...