Advertisement
TorroesPrime

Untitled

Apr 28th, 2022
1,102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. from breezypythongui import EasyFrame
  2.  
  3. class races_Gui(EasyFrame):
  4.     """Application window for the race controller"""
  5.     def __init__(self):
  6.         """Sets up the window and the widgets."""
  7.         EasyFrame.__init__(self, title = "Turtle Racer")
  8.  
  9. races_Gui().mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement