Skip to content

Commit af8edbc

Browse files
committed
GUI
1 parent a52d635 commit af8edbc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3433,7 +3433,7 @@ import PySimpleGUI as sg
34333433
layout = [[sg.Text("What's your name?")], [sg.Input()], [sg.Button('Ok')]]
34343434
window = sg.Window('Window Title', layout)
34353435
event, values = window.read()
3436-
print(f'Hello {values[0]}! Thanks for trying PySimpleGUI')
3436+
print(f'Hello {values[0]}!')
34373437
```
34383438

34393439

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2913,7 +2913,7 @@
29132913
layout = [[sg.Text(<span class="hljs-string">"What's your name?"</span>)], [sg.Input()], [sg.Button(<span class="hljs-string">'Ok'</span>)]]
29142914
window = sg.Window(<span class="hljs-string">'Window Title'</span>, layout)
29152915
event, values = window.read()
2916-
print(<span class="hljs-string">f'Hello <span class="hljs-subst">{values[<span class="hljs-number">0</span>]}</span>! Thanks for trying PySimpleGUI'</span>)
2916+
print(<span class="hljs-string">f'Hello <span class="hljs-subst">{values[<span class="hljs-number">0</span>]}</span>!'</span>)
29172917
</code></pre></div>
29182918

29192919
<div><h2 id="appendix"><a href="#appendix" name="appendix">#</a>Appendix</h2><div><h3 id="cython">Cython</h3><p><strong>Library that compiles Python code into C.</strong></p><pre><code class="python language-python hljs"><span class="hljs-comment"># $ pip3 install cython</span>

0 commit comments

Comments
 (0)