python制表符 \t
制表符 \t效果等同于 tab键。
可以让多行字符串进行对齐
1) 未使用制表符:
print("Upper Character")
print("Whatever Charecter")
输出结果:
Upper Character
Whatever Character
2) 使用制表符:
print("Upper\tCharacter")
print("Whatever\tCharacter")
输出结果:
Upper Character
Whatever Character