11 lines
113 B
Python
11 lines
113 B
Python
|
from tkinter import Tk
|
||
|
|
||
|
|
||
|
def main():
|
||
|
root = Tk()
|
||
|
root.mainloop()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|