码迷,mamicode.com
首页 > 其他好文 > 详细

团队-象棋游戏-模块开发过程

时间:2017-11-03 13:12:06      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:append   def   fun   str   模块   pop   pen   range   not   

def calculate(expression):
ex=[]
ans=0
if ‘(‘ not in expression:
ans=fun(expression)
return ans
for i in range(len(expression)):
if expression[i]==‘(‘:
ex.append(i) 
elif expression[i]==‘)‘: 
temp=0
sub=expression[ex[len(ex)-1]+1:i]
temp=fun(sub)
expression=expression[0:ex[len(ex)-1]]+str(temp)+expression[i+1:len(expression)+1]
ex.pop()
return calculate(expression)

s=‘1 - 2 * ( (60-30 +(-40/5+3) * (9-2*5/3 + 7 /3*99/4*2998 +10 * 568/14 )) - (-4*3)/ (16-3*2) )‘

print(1 - 2 * ( (60-30 +(-40/5+3) * (9-2*5/3 + 7 /3*99/4*2998 +10 * 568/14 )) - (-4*3)/ (16-3*2) ))
s3=‘3*(4+50)-((100+40)*5/2-3*2*2/4+9)*(((3+4)-4)-4)‘                
print(3*(4+50)-((100+40)*5/2-3*2*2/4+9)*(((3+4)-4)-4))
print(calculate(s))                                                
print(calculate(s3))

团队-象棋游戏-模块开发过程

标签:append   def   fun   str   模块   pop   pen   range   not   

原文地址:http://www.cnblogs.com/yl1234/p/7777321.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!