Home / Python Tips Generated By ChatGPT / Concatenating Strings in Python Combine strings using the + operator. Source Code first_name = "John" last_name = "Doe" full_name = first_name + " " + last_name print(full_name)