Python:重构代码以删除全局变量

前端之家收集整理的这篇文章主要介绍了Python:重构代码以删除全局变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我目前在我的代码中使用一个名为correct的全局变量.考虑到全局变形是不受欢迎的,有没有更好的方法来设置我的代码来“保护”全局变量

  1. from random import randint
  2. from random import choice
  3. lower = int(raw_input("Enter a lower integer constraint: "))
  4. higher = int(raw_input("Enter a higher integer constraint: "))
  5. correct = 0
  6. def gen_randoms(lower,higher):
  7. integers = list()
  8. for x in xrange(4):
  9. rand_int = randint(lower,higher)
  10. integers.append(rand_int)
  11. return integers
  12. def gen_equation(integers):
  13. nums = map(str,integers)
  14. operators = ['*','+','-']
  15. equation = 'num op num op num op num'
  16. while 'op' in equation:
  17. equation = equation.replace('op',choice(operators),1)
  18. while 'num' in equation:
  19. equation = equation.replace('num',choice(nums),1)
  20. print equation
  21. return equation
  22. def evaluate(equation):
  23. answer = eval(equation)
  24. print answer
  25. return answer
  26. def compare_answers(gen_answer,game):
  27. global correct
  28. user_answer = int(raw_input("What is the answer? "))
  29. if user_answer == gen_answer:
  30. correct += 1
  31. print 'Correct!'
  32. print 'Current streak: %s' % str(correct)
  33. game()
  34. else:
  35. print 'Incorrect!'
  36. correct = 0
  37. game()
  38. def game():
  39. nums = gen_randoms(lower,higher)
  40. this_equation = gen_equation(nums)
  41. gen_answer = evaluate(this_equation)
  42. compare_answers(gen_answer,game)
  43. game()
最佳答案
我可能会这样做:

  1. #!/usr/bin/python
  2. """Equation solving game."""
  3. from random import randint
  4. from random import choice
  5. def gen_randoms(lower,higher):
  6. """Generates four random numbers between provided bounds."""
  7. integers = [randint(lower,higher) for x in range(4)]
  8. return integers
  9. def gen_equation(integers):
  10. """Generates a random equation from four provided integers."""
  11. nums = [str(i) for i in integers]
  12. operators = ['*',1)
  13. return equation
  14. def evaluate(equation):
  15. """Evaluates an equation."""
  16. return eval(equation)
  17. def main():
  18. """Main game function."""
  19. lower = int(raw_input("Enter a lower integer constraint: "))
  20. higher = int(raw_input("Enter a higher integer constraint: "))
  21. nums = gen_randoms(lower,higher)
  22. streak = 0
  23. while True:
  24. this_equation = gen_equation(nums)
  25. print this_equation
  26. user_answer = raw_input("What is the answer? ('Q' to quit) ")
  27. if user_answer.lower()[0] == 'q':
  28. break
  29. gen_answer = evaluate(this_equation)
  30. print 'The answer was: %d' % gen_answer
  31. if gen_answer == int(user_answer):
  32. streak += 1
  33. print 'Correct!'
  34. print 'Current streak: %d' % streak
  35. else:
  36. streak = 0
  37. print 'Incorrect!'
  38. if __name__ == "__main__":
  39. main()

一些评论

>每个函数通常只应该做一件事,所以如果一个函数评估一个方程式,通常最好不要打印方程式.
>当你这样做时,弄清楚变量应该去哪里变得容易得多,因为你不需要在每个函数执行几个不同的事情时都要传递它们.
>这里的主要游戏逻辑非常简单,你不需要将它从你的主游戏()函数(或者我的例子中的main()函数)中分解出来,这样,它不会使事情过于复杂而留下它在那里.如果你想进行更多的错误检查(例如,查看用户是否输入了无效的号码,并且你想要返回并要求更多输入,那么你可能想要更多一些.

猜你在找的Python相关文章