Skip to content

Instantly share code, notes, and snippets.

@colyk
colyk / time.py
Created July 6, 2017 20:48
Точное время GUI
from tkinter import *
from time import strftime
root = Tk()
root.title("Time")
root.geometry('200x120')
root.resizable(width=False, height=False)
time_var = StringVar()
date_var = StringVar()