整形输入
a = int(input())
浮点输入
b = float(input())
输入三个数
a,b,c = map(int,input().split())
输入一串数字
list1 = list(map(int,input().split()))
list2 = [int(i) for i in input().split()]
2. 输出
隔空输出
list1 = [1,2,3,4]
print(' '.join(map(str,list1)))
四舍五入
print(int(0.56 + 0.5))
print(int(0.46+0.5))
保留两位
a = 456464.20132
print("%.2f"%a)
使用字符串进行格式化输出
print('{0:d},{1:o},{3:x},{2:b}'.format(255,255,255,255))
255,377,ff,11111111
print("%d,%o,%x,%X"%(255,255,255,255))
255,377,ff,FF
format 参考链接:https://www.runoob.com/python/att-string-format.html
字符串格式化输出%: https://www.cnblogs.com/nowgood/p/str_formatter01.html
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)