输出
print() 打印字符串
用 print() 在括号中加上字符串,就可以向屏幕上输出指定的文字。
比如输出 ‘hello, world’ ,用代码实现如下:
print(‘hello, world’)
print() 函数也可以接受多个字符串,用逗号“,”隔开,就可以连成一串输出:
print(‘The quick brown fox’, ‘jumps over’, ‘the lazy dog’)
The quick brown fox jumps over the lazy dog
print() 会依次打印每个字符串,遇到逗号“,”会输出一个空格
格式化输出
%s :代表字符串的占位
%d:整型
%f:浮点型
%.xf(x:1,2,3,4,5)保留小数点后多少位
name = ‘westos’
age = 11
print(’%s的年龄是%d’ %(name,age))
westos的年龄是11
money = 60000
print(’%s的工资为%f’ %(name,money))
tom的工资为60000.000000
print(’%s的工资为%.2f’ %(name,money))
tom的工资为60000.00
print(’%s的工资为%.3f’ %(name,money))
tom的工资为60000.000
整数的占位:不够的位数 前面补0
sid = 1
name = ‘lily’
print(’%s的学号是%.4d’ %(name,sid))
lily的学号是0001