We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a60fd1 commit c6e9e61Copy full SHA for c6e9e61
snippets/python/[tkinter]/basics/hello-world.md
@@ -11,7 +11,7 @@ from tkinter import Tk, Label
11
class App(Tk):
12
def __init__(self):
13
Tk.__init__(self)
14
- self.geometry("100x100")
+ self.geometry("200x200")
15
16
self.lbl = Label(self, text='Hello, World!')
17
self.lbl.pack(expand=1)
0 commit comments