12 lines
137 B
Python
12 lines
137 B
Python
|
from tkinter import Tk
|
||
|
|
||
|
|
||
|
def main():
|
||
|
root = Tk()
|
||
|
root.title('Title')
|
||
|
root.mainloop()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|