二、python打印print

二、python打印print

基本的打印规则

换行打印

help(print) 			# 帮助方法

print("hello world")
print("python") 		# 这是两句分开的打印,会打印两行

print("hello world\npython") 	# 打印的结果会换行

print('''hello world
python''') 			# 打印的结果会换行

print("hello world
python") 			# 错误写法

不换行打印

print('hello world',end=" ")
print("python") 	# python3里加上end=" ",可以实现不换行打印.这两句只打印一行
print("hello world \
python") 			# 使用\符号连接行,物理上换了行,逻辑上并没有换行。
print("hello world"
"python") 			# (),[],{}里的多行内容不用\连接,但需要每行引起来;打印出来的结果不换行

有颜色的打印

print("\033[31;1;31mhello world\033[0m")
print("\033[31;1;32mhello world\033[0m")
print("\033[31;1;33mhello world\033[0m")
print("\033[31;1;34mhello world\033[0m")
print("\033[31;1;35mhello world\033[0m")
print("\033[31;1;36mhello world\033[0m")
print("\033[31;1;37mhello world\033[0m")
print("\033[31;1;38mhello world\033[0m")
print("\033[31;1;39mhello world\033[0m")
print("\033[31;1;40mhello world\033[0m")
print("\033[31;1;41mhello world\033[0m")
print("\033[31;1;42mhello world\033[0m")
print("\033[31;1;43mhello world\033[0m")
print("\033[31;1;44mhello world\033[0m")
print("\033[31;1;45mhello world\033[0m")
print("\033[31;1;46mhello world\033[0m")
print("\033[31;1;47mhello world\033[0m")
超出了47这个数字会以红色打印

打印时的常见异常(错误)

image

posted @ 2023-06-02 09:37  村尚chun叔  阅读(148)  评论(0编辑  收藏  举报