Source Code:
(back to article)
# Using the print function with multiple arguments separated by a comma print("Hello,", "world!") # Using the format method print("Hello, {}!".format("world"))
Result:
Report an issue