If you need to print out multiple arguments using Python, then you can do one of the following:

Option 1 – Using print

1
print("Something", "Else", "Please")

Output: Something Else Please

Option 2 – Using String Formatting

1
print("Something {} {}".format("Else", "Please"))

Output: Something Else Please

Or with explicit ordering:

1
print("Something {1} {0}".format("Else", "Please"))

Output: Something Please Else

Option 3 – Using F-String Formatting

1
2
3
4
5
one = "Something"
two = "Else"
three = "Please"

print(f"{one} {two} {three}")

Output: Something Else Please