第二节 print输出

一、单行输出

print("Hello Python")

运行结果:

alt 单行输出

二、多行输出

print("床前明月光,")
print("疑似地上霜。")

运行结果: alt 多行输出

三、格式化输出

print('%o'%20) #%o表示八进制
print('%d'%20) #%d表示十进制
print('%x'%20) #%x表示十六进制
print('%f'%2.01) #%f表示默认保留6位小数
print('%.3f'%3.1414926) #%.3f表示保留3位小数
print('{} {}'.format('hello','world')) # 格式化参数输出
print('{0} {1}'.format('hello','world')) #带标号对格式化参数输出

运行结果: alt 格式化输出

results matching ""

    No results matching ""