python加法器_003_014 Python 简单加法器

代码如下:

#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
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值