在使用Python的print函數時,可以通過format函數來控制輸出的格式。以下是關于換行與分隔符的使用技巧:
print("Hello\nWorld")
輸出:
Hello
World
print("apple", "banana", "cherry", sep=", ")
輸出:
apple, banana, cherry
print("Hello", end=" ")
print("World")
輸出:
Hello World
print("Line 1")
print("Line 2")
輸出:
Line 1
Line 2
以上是關于print函數的換行與分隔符使用技巧,希望對你有幫助。