diff --git a/README.md b/README.md index ab284df..bb6375b 100644 --- a/README.md +++ b/README.md @@ -3433,7 +3433,7 @@ 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() -print(f'Hello {values[0]}! Thanks for trying PySimpleGUI') +print(f'Hello {values[0]}!') ``` diff --git a/index.html b/index.html index ba9de19..d775315 100644 --- a/index.html +++ b/index.html @@ -2913,7 +2913,7 @@ line(df, x='Date', y= layout = [[sg.Text("What's your name?")], [sg.Input()], [sg.Button('Ok')]] window = sg.Window('Window Title', layout) event, values = window.read() -print(f'Hello {values[0]}! Thanks for trying PySimpleGUI') +print(f'Hello {values[0]}!')

#Appendix

Cython

Library that compiles Python code into C.

# $ pip3 install cython