python基础入门之输入输出

本文最后更新于:December 21, 2020 am

1. python的多种输入格式

1
2
3
4
5
6
a=input()
b = input("please input:")
c=int(input()) 1个整数
a,b=map(int,input().split()) 2个整数
c=list(map(int,input().split())) 1个整数列表
d=sys.stdin.readline().strip().split() 1个字符列表

2. python的多种输出格式

1
2
3
4
5
6
print(res)
print("The result:",res)
print("%.4f"%res) #输出小数点后四位
print('常量 PI 的值近似为:%5.3f。' % math.pi) #输出小数点前5位,后4位
print('站点列表 {0}, {1}, 和 {other}。'.format('Google', 'Runoob',other='Taobao'))
#str.format(*list,**dict)