# The + operator can be used to concatenate two different strings. x = "hello " y = "world!" # Concatenate two strings print(x + y) # OUTPUT: hello world!