ahoj.potřeboval bych do tohoto programu vložit příkaz který mi po ukončení odpočítání vypne počítač.díky za radu.
from Tkinter import *
from tkMessageBox import showinfo
a=input("Zadejte čas")
class Odpocet:
def __init__(self):
self.vteriny = a
self.root = Tk()
if self.vteriny > 0:
self.root.after(1000, self.Vteriny)
else: showinfo("Konec odpočtu")
self.times = Label(self.root, bg="black", fg="white",
font=("Trebuchet MS", 10, "bold"), text=self.vteriny)
self.times.pack(fill=BOTH, expand=1)
self.root.mainloop()
def Vteriny(self):
self.vteriny = self.vteriny - 1
self.times['text'] = self.vteriny
if self.vteriny > 0:
self.root.after(1000, self.Vteriny)
else: showinfo("Konec odpočtu")
main = Odpocet()