# 温度转换
Temper = input("")
if Temper[-1] in ['F','f']:C = (eval(Temper[0:-1])-32)/1.8print("{:.2f}C".format(C))
elif Temper[-1] in ['C','c']:F = 1.8*eval(Temper[0:-1])+32 print("{:.2f}F".format(F))
else:print("输入格式错误")Template = "零一二三四五六七八九十"
n = input()
for i in n:print(Template[eval(i)],end='')#货币转换
Money = input("")
if Money[:3] in ["RMB"]:USD = eval(Money[3:])/6.78print("USD{:.2f}".format(USD))
elif Money[:3] in ["USD"]:RMB = eval(Money[3:])*6.78print("RMB{:.2f}".format(RMB))
else:print()CurStr = input()
if CurStr[:3] == "RMB":print("USD{:.2f}".format(eval(CurStr[3:])/6.78))
elif CurStr[:3] in ['USD']:print("RMB{:.2f}".format(eval(CurStr[3:])*6.78)
详细解决方案
python2-温度转换、货币转换
热度:69 发布时间:2023-12-03 12:40:57.0
相关解决方案
- python2.5 装配webob 模块
- python2.5 json施用
- 实际应用问题操作——Eclipse+pydev2.2+python2.7 中文乱码问题
- [很忧闷]python2.7连接mysql5.5配置
- python2.7安装pandas
- python2-常见错误-不断更新
- Python2.7的UnicodeEncodeError: ‘ascii’ codec can’t encode
- python2.7中文路径
- python2-使用python发送邮件工具
- Pyqt5+python2.7 美观的登陆界面制作(二)
- Pyqt5+python2.7 美观的登陆界面制作(一)
- python2 token和验证
- 【已解决】Ubuntu18.04用python报错bash: ’/usr/bin/python2.7’: 没有那个文件或目录
- Python2.x与3.x的区别
- python2:__unicode__ python3: __str__
- Python2
- monkey+python2.7,暂时不完善
- python2.7版本 编写post请求接口(三)
- python2.7版本登录获取cookie并调用接口(一)
- python2.7版本登录获取cookie并调用接口(二)
- Python2~3的C扩展
- python2.7安装pyqt4
- pycharm(Python2)+Naoqi+OpenCV配置(非常详细)
- linux centos 7.x 安装 python3.x 替换 python2.x(亲测有效)
- centos7下安装 python2.7
- Python2.7 json.loads() 出现的unicode编码问题
- Python2.7.3 ArcGIS10.2下的Python2.7.3安装pip之SyntaxError: invalid syntax解决方法
- python2 使用arcpy自定义GIS工具箱,实现excel读取、空间插值
- python2-温度转换、货币转换
- python2(kali)使用的一些经验