Python的print
函数,不仅是编写代码时的得力助手,更是我们快速洞察变量值、呈现关键信息的明亮灯塔。除了基础的输出功能,print函数还拥有一系列深藏不露的高级技巧,它们如同魔法一般,等待有心人的探索。让我们一同走进这个神秘的魔法世界,解锁print函数的无限可能,让你在Python编程中如鱼得水,游刃有余。
示例代码:
name = "John Smith"
age = 25
print("My name is %s and I am %d years old." % (name, age))
打印结果
在上面的代码中,我们使用%s
来插入name
变量的值,使用%d
来插入age
变量的值。
示例代码:
name = "John Smith"
age = 25
print("My name is {} and I am {} years old.".format(name, age))
打印结果
在上面的代码中,我们使用{}
来指定需要插入的变量位置,然后在调用format()
方法时传入相应的变量。
示例代码:
name = "John Smith"
age = 25
print(f"My name is {name} and I am {age} years old.")
打印结果
在上面的代码中,我们直接在字符串中使用{}
来指定需要插入的变量位置,然后在调用print()函数时直接传入相应的变量。
在Python中,我们可以使用ANSI转义序列来改变打印文本的颜色。
示例代码:
# 定义颜色代码
colors = {
'red': '\033[91m',
'green': '\033[92m',
'yellow': '\033[93m',
'blue': '\033[94m',
'magenta': '\033[95m',
'cyan': '\033[96m',
'white': '\033[97m',
'default': '\033[99m',
'light_gray': '\033[37m',
'dark_gray': '\033[90m',
}
# 重置颜色代码
reset_color = '\033[0m'
# 需要打印的字符串
text = "My name is John Smith and I am 25 years old."
# 循环遍历所有颜色并打印字符串
for color_name, color_code in colors.items():
print(color_code + text + reset_color)
print(f"The above text is printed in {color_name}.")
打印结果
My name is John Smith and I am 25 years old.
The above text is printed in red.
My name is John Smith and I am 25 years old.
The above text is printed in green.
My name is John Smith and I am 25 years old.
The above text is printed in yellow.
My name is John Smith and I am 25 years old.
The above text is printed in blue.
My name is John Smith and I am 25 years old.
The above text is printed in magenta.
My name is John Smith and I am 25 years old.
The above text is printed in cyan.
My name is John Smith and I am 25 years old.
The above text is printed in white.
My name is John Smith and I am 25 years old.
The above text is printed in default.
My name is John Smith and I am 25 years old.
The above text is printed in light_gray.
My name is John Smith and I am 25 years old.
The above text is printed in dark_gray.
在上面的代码中,我们使用10种不同的颜色来打印同样的字符串,并在每次打印后输出所使用的颜色名称。在每次打印后,它都会使用reset_color
变量来重置颜色,以确保后续的输出不会受到之前颜色的影响。
text = "hello world!!"
N = 10
# 使用print的file参数将输出重定向到文本文件
with open('output.txt', 'w') as file:
for i in range(N):
print(text, file=file)
运行结果
在上面的代码中,我们打印10次同样的字符串hello world!!
,并将打印结果保存在文本文件output.txt中。
示例代码:
my_list = [1, 2, 3, 4, 5]
with open('output.txt', 'w') as file:
for v in my_list:
print(v, file=file, end='\t')
运行结果
在上面的代码中,将列表[1,2,3,4,5]
中的元素依次输出到文本文件output.txt中, 通过end
参数指定元素之间用制表符间隔。
默认情况下,print
函数使用空格作为参数之间的分隔符,使用换行符作为结束符。可以通过sep
和end
参数来自定义分隔符和结束符。
示例代码:
print("Hello", "World", sep="+++", end="---")
运行结果
在上面的代码中,我们指定利用seq
参数指定+++
作为分隔符,利用end
参数指定---
作为结束符。