003_014 Python 简单加法器

本文介绍了一个使用Python实现的简易计算器程序,该程序通过正则表达式解析用户输入的数学表达式,并利用标准库中的操作符来执行加减乘除运算。此外,还提供了实时显示中间结果的功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

代码如下:

#encoding=utf-8

print '中国'

#用Python实现加法器
import decimal, re, operator  
parse_input = re.compile(r'''(?x)           # 允许RE中的注释和空白符  
                    (\d+\.?\d*)             # 带有可选的小数部分的数  
                    \s*                     # 可选的空白符  
                    ([-+/*])                # 运算符  
                    $''')                   # 字符串结束  
oper = { '+': operator.add, '-': operator.sub,  
               '*': operator.mul, '/': operator.truediv,  
           }  
total = decimal.Decimal('0')  
def print_total( ):  
      print '=======  =\n', total  
      
print """Welcome to Adding Machine:   
Enter a number and operator,   
an empty line to see the current subtotal,  
or q to quit: """  
while True:  
      try:  
            tape_line = raw_input( ).strip( )  
      except EOFError:  
            tape_line = 'q' 
      if not tape_line:  
            print_total( )  
            continue  
      elif tape_line == 'q':  
            print_total( )  
            break  
      try:  
            num_text, op = parse_input.match(tape_line).groups( )  
      except AttributeError:  
            print 'Invalid entry: %r' % tape_line  
            print 'Enter number and operator,empty line for total, q to quit'  
            continue  
      total = oper[op](total, decimal.Decimal(num_text)) 

感觉不能用,打印结果如下:

中国
Welcome to Adding Machine:   
Enter a number and operator,   
an empty line to see the current subtotal,  
or q to quit: 
1.2-2.3
Invalid entry: '1.2-2.3'
Enter number and operator,empty line for total, q to quit

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

书山登峰人

精品不易

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值