concatination, adding strings

PHOTO EMBED

Mon Aug 08 2022 10:05:07 GMT+0000 (Coordinated Universal Time)

Saved by @Abubakar5 #python

tring1 = "The wind, "
string2 = "which had hitherto carried us along with amazing rapidity, "
string3 = "sank at sunset to a light breeze; "
string4 = "the soft air just ruffled the water and "
string5 = "caused a pleasant motion among the trees as we approached the shore, "
string6 = "from which it wafted the most delightful scent of flowers and hay."

# Define message below:
message = string1+string2+string3+string4+string5+string6

print(message)
content_copyCOPY