本文整理匯總了Python中Input.yesno方法的典型用法代碼示例。如果您正苦於以下問題:Python Input.yesno方法的具體用法?Python Input.yesno怎麽用?Python Input.yesno使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Input
的用法示例。
在下文中一共展示了Input.yesno方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: Display
# 需要導入模塊: import Input [as 別名]
# 或者: from Input import yesno [as 別名]
signal.signal(signal.SIGINT, exit_handler)
signal.signal(signal.SIGQUIT, exit_handler)
signal.signal(signal.SIGTERM, exit_handler)
display = Display()
timefmt = "%Y/%m/%d\n%H:%M:%S"
old_t = int(time.time())
display.message(time.strftime(timefmt))
while True:
if display.button_select():
if Input.yesno(prompt = "Exit?" , value = "no"):
display.stop()
exit(0)
if Input.yesno(prompt = "Reboot?" , value = "no"):
display.message("Rebooting...")
os.system("/sbin/shutdown -r now")
time.sleep(1)
exit(0)
if Input.yesno(prompt = "Shutdown?" , value = "no"):
display.message("Shutting down...")
os.system("/sbin/shutdown -h -P now")
time.sleep(1)
exit(0)