You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
""" Example Dialog (ExitSelectDialog): "Select the method to exit the program (0: Dialogue and Time entry, 1: Time entry only, 2: Dialogue entry only, 3: Normal exit (old style)): "
57
+
Example Dialog (userTimeDialog): "After how many seconds should the program be closed?: "
58
+
Example Dialog (exitDialog): "Exit program..."
59
+
Example Dialog (errormsgDialog): "Invalid Command!" """
exit_select=int(input("Select the method to exit the program (0: Dialogue and Time entry, 1: Time entry only, 2: Dialogue entry only, 3: Normal exit (old style)): "))
79
+
ifexit_select==0:
80
+
userTime=int(input("After how many seconds should the program be closed?: "))
userTime=int(input("After how many seconds should the program be closed?: "))
84
+
exit_program_time(userTime,unit=unit)
85
+
elifexit_select==2:
86
+
exit_program_dialog("Exit program...")
87
+
elifexit_select==3:
88
+
exit()
89
+
else:
90
+
error_msg("Invalid Command!","","")
91
+
eliflang==TR:
92
+
exit_select=int(input("Programdan çıkış yöntemini seçin (0: Diyalog ve Zaman girişi, 1: Yalnızca zaman girişi, 2: Yalnızca diyalog girişi, 3: Normal çıkış (eski stil)): "))
93
+
ifexit_select==0:
94
+
userTime=int(input("Program kaç saniye sonra kapatılmalıdır?: "))
0 commit comments