diff --git a/README.md b/README.md index d3819e8..09b5bfa 100644 --- a/README.md +++ b/README.md @@ -3486,6 +3486,7 @@ PySimpleGUI ```python # $ pip3 install PySimpleGUI import PySimpleGUI as sg + layout = [[sg.Text("What's your name?")], [sg.Input()], [sg.Button('Ok')]] window = sg.Window('Window Title', layout) event, values = window.read() diff --git a/index.html b/index.html index 5b3c15f..66f8afd 100644 --- a/index.html +++ b/index.html @@ -2839,6 +2839,7 @@ line(df, x='Date', y=

#PySimpleGUI

# $ pip3 install PySimpleGUI
 import PySimpleGUI as sg
+
 layout = [[sg.Text("What's your name?")], [sg.Input()], [sg.Button('Ok')]]
 window = sg.Window('Window Title', layout)
 event, values = window.read()