首页 > 编程 > Python > 正文

python 简易计算器程序,代码就几行

2019-11-25 18:44:10
字体:
来源:转载
供稿:网友
代码:
复制代码 代码如下:

import os
while True:
dynamic = input('输入计算表达式:')
if dynamic != 'cls':
try:
result = eval(dynamic)
print('计算结果:'+str(result))
except:
print('计算表达式输入有误!')
else:
command = 'cls'
os.system(command)
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表