You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A silly display of what 1 line of PySimpleGUI is capable of producing by
utilizing the power of Python. The power isn't a PySimpleGUI trick.
The power is Python List Comprehensions and using them in your layout.
Copyright 2021 PySimpleGUI
"""
sg.Window('Sudoku', [[sg.Frame('', [[sg.Input(justification='r', size=(3,1)) for col in range(3)] for row in range(3)]) for frame_col in range(3)] for frame_row in range(3)], use_custom_titlebar=True).read()