Answer:
Here, I made sure to incorporate variables just in case. You could change it to whatever you need.
Step-by-step explanation:
v1 = "Hello world!"
v2 = "Spam"
v3 = "Eggs"
v4 = "SpamEggs"
v5 = "Spam Eggs"
v6 = "Spam Eggs"
v7 = 7.9
v8 = 20
v9 = 13
v10 = 5
v11 = 13
v12 = 10.8
v13 = 2.7
print(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13)
if you don't want it all on one line you could just print each variable individually :)