19 lines
523 B
Python
19 lines
523 B
Python
import PySimpleGUI as sg
|
|
|
|
"""
|
|
Oh yes, the classic "Hello World". The problem is that you
|
|
can do it so many ways using PySimpleGUI
|
|
"""
|
|
|
|
sg.popup_no_buttons('Hello World') # the single line
|
|
|
|
# single line using a real window
|
|
sg.Window('Hello world', [[sg.Text('Hello World')]]).read()
|
|
|
|
# This is a "Traditional" PySimpleGUI window code. First make a layout, then a window, the read it
|
|
layout = [[sg.Text('Hello World')]]
|
|
window = sg.Window('Hello world', layout)
|
|
event, values = window.read()
|
|
|
|
window.close()
|