Python print 格式化输出 转义字符 赋值
# 1.用法1
print("hello word!!!")
name = "小白"
print(name)
help(print)
"""
hello word!!!
小白
Help on built-in function print in module builtins:
print(*args, sep=' ', end='\n', file=None, flush=False)
Prints the valu...