1 Star 0 Fork 0

Python程序设计/192223zpy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
calculator.py 706 Bytes
一键复制 编辑 原始数据 按行查看 历史
192223张鹏宇 提交于 2020-04-22 19:48 . calculator
while True:
a=float(input("输入第一个数 "))
print("功能:1加法 2减法 3乘法 4除法 5乘方 6ln")
b=int(input("选择算法 "))
if b==6 :
import math
d=math.log(a)
print("ln",a,"=",d)
else : c=float(input("输入第二个数 "))
if b==1 :
d=a+c
print(a,"+",c,"=",d)
elif b==2 :
d=a-c
print(a,"-",c,"=",d)
elif b==3 :
d=a*c
print(a,"X",c,"=",d)
elif b==4 :
d=a/c
print(a,"÷",c,"=",d)
elif b==5 :
d = a**c
print(a, "^", c, "=", d)
n = int(input("是否退出?1.是 2.继续运算 "))
if n==1:
break
elif n==2:
continue
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/python_programming/zpy192223.git
[email protected]:python_programming/zpy192223.git
python_programming
zpy192223
192223zpy
master

搜索帮助