Простые типы / Строки

s1 = "three"
s2 = "two"
s3 = s1 + ", " + s2
s3 += ", one"
s_go = s3 + ", " + "go!"
# sGo is "three, two, one, go!"

print(f"{s_go = }")