输入一组工资数据,写入列表.对于小于5000的工资,涨1.5倍.并输出涨后的工资数据. 输入格式: 数据之间空格隔开 输出格式: 涨工资后的数据,空格隔开.尾部 不带空格. 输入样例: 3000 4000 6000 8000 2000.5 输出样例: 4500.0 6000.0 6000 8000 3000.75 s = input() ls = [] ls = s.split() cnt = 0 for i in ls: i = float(i) if i <= 5000 and cnt ==…
您的浏览器(Chrome 33) 需要更新.该浏览器有诸多安全漏洞,无法显示本网站的所有功能. 了解如何更新浏览器 × p-nand-q.com C++ Python Programming Languages Humor Tools Misc Building Python 2.7.10 with Visual Studio 2010 or 2015 7th revision, August 7, 2015.A document history can be found at t…