« All Events
6PM Python Game Development
July 8, 2019 @ 6:00 pm - 7:00 pm
- We reviewed last week homework.
- We continued with Birdie project to remove birds and bullets after they are out of screen.
- Homework:
- In Python file airplane.py, create an Airplane class.
- This class should have at least 3 properties.
- Inside this class, it should have a function called “get_info” when it is called will print to the shell all of the properties the class.
- After the class is created, create 2 instances of Airplane class and call the class get_info() function.
- In Python file super_hero.py, create a SuperHero class.
- This class should have at least 4 properties.
- Inside this class, it should have a function called “get_info” when it is called will print to the shell all of the properties the class.
- After the class is created, create 2 instances of SuperHero class and call the class get_info() function.