python基础入门之输入输出 本文最后更新于:December 21, 2020 am 1. python的多种输入格式 123456a=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的多种输出格式 123456print(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) python python 本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处! python测试用例之最长无重复子串选择 Previous python基础入门之string方法总结 Next Please enable JavaScript to view the comments