Concat strings example

PHOTO EMBED

Mon Mar 15 2021 14:40:11 GMT+0000 (Coordinated Universal Time)

Saved by @fre_apples #python

string1 = "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