本文整理汇总了Python中Menu.Menu.select方法的典型用法代码示例。如果您正苦于以下问题:Python Menu.select方法的具体用法?Python Menu.select怎么用?Python Menu.select使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Menu.Menu
的用法示例。
在下文中一共展示了Menu.select方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: History
# 需要导入模块: from Menu import Menu [as 别名]
# 或者: from Menu.Menu import select [as 别名]
from Menu import Menu
from Integrals import Integrals
from History import History
from InputReader import InputReader
from Help import Help
# creating necessary objects
log = History()
menu = Menu()
reader = InputReader()
sub = Integrals()
myHelp = Help()
while True:
selection = menu.select() #
if selection == 'q': # Quiting the main menu
break
elif selection == '1': # choosing single integral option
result = sub.singleIntegral()
log.add(result)
elif selection == '2': # choosing many integrals
results = sub.manyIntegrals()
log.add(results)
elif selection == '3': # choosing history
log.show()
raw_input("Press any key to close...")
elif selection == '4': # choosing help
myHelp.show()
raw_input("Press any key to close...")