Python 是一種非常強大的編程語言,它具有簡單易懂、易于學習的特點,同時還擁有豐富的庫和強大的開發工具。其中,打印格式是 Python 的基礎之一,它掌握好了可以讓你的代碼更加簡潔、易懂。
# 常見的打印格式 # 打印字符串 print("Hello world!") # 打印變量 x = 10 y = "apple" print("x is", x, "and y is", y) # 打印數字、字符串、變量 age = 20 name = "Lucy" print("{0} is {1} years old".format(name, age)) # 打印浮點數 import math print("The value of pi is approximately {:.3f}.".format(math.pi)) # 打印進制數 x = 10 print("The decimal value of", x, "is:") print("In binary:", bin(x)) print("In octal:", oct(x)) print("In hexadecimal:", hex(x))
在 Python 3 中,打印函數print()
默認以空格為分隔符,末尾添加換行符。你可以使用end
參數自定義結尾符號,使用sep
參數自定義分隔符。
# 自定義結尾符號 print("Hello", end=" ") print("world") # 自定義分隔符 print("x", "y", "z", sep="-")
此外,Python 還提供了多種方法來格式化打印文本,如使用字符串插值或使用 f-strings。這些方法可以適應不同的打印需求。總之,掌握好 Python 的打印格式,能夠讓你更好地展示你的代碼。