gitextract_ej8bju1m/ ├── "if" statements/ │ └── main.py ├── .gitignore ├── README.md ├── classes/ │ ├── Class-Inheritance.py │ ├── Introduction-to-Classes.py │ ├── Pets-Part-A.py │ ├── Pets-Part-B.py │ ├── Pets-Part-C.py │ └── Pets-Part-D.py ├── dictionaries and sets/ │ ├── Dictionaries-and-Sets.py │ └── Examples-of-Dictionaries-and-Sets.py ├── error handling/ │ └── main.py ├── final project/ │ ├── Blackjack-Part-A.py │ ├── Blackjack-Part-B.py │ ├── Blackjack-Part-C.py │ ├── Blackjack-Part-D.py │ ├── Blackjack-Part-E.py │ └── Blackjack-Part-F.py ├── functions/ │ └── main.py ├── importing/ │ ├── Alternative-Import-Methods.py │ ├── Guessing-Game-Part-A.py │ ├── Guessing-Game-Part-B.py │ ├── Introduction-to-Importing.py │ ├── Math-Library.py │ └── Time-Library.py ├── input and output/ │ ├── File-IO.py │ ├── Introduction-to-IO.py │ ├── Participant-Data-Part-A.py │ ├── Participant-Data-Part-B.py │ ├── Participant-Data-Part-C.py │ ├── Participant-Data-Part-D.py │ ├── Tic-Tac-Toe-Part-A.py │ └── Tic-Tac-Toe-Part-B.py ├── lists/ │ └── main.py ├── loops/ │ ├── Breaking-and-Continuing-in-Loops.py │ ├── Introduction-to-Loops.py │ ├── Making-Shapes-With-Loops.py │ ├── Nested-Loops.py │ └── While-Loops.py └── variables/ └── main.py