American Young Coder

AYC logo

9 AM – Python Game Development

We went over how to increase the score when the Fireball hit the bird.  Homework: When the cloud goes off the screen, kill the cloud. Look at how we did it inRead More...

10 AM – Python Game Development

Homework: Add "assets/audio/Happy Baby.wav" To do your final project properly, you need to be able to share your code project with your team members and me. In order to do that, weRead More...

12 PM – Python Game Development

We went over how to add platforms into the game. We learned how to push codes into gitlab Homework: inside main.py, enhance create_platform() method to have all the platforms needed for theRead More...

1 PM – Python Game Development

We went over the classes homework. We learned about inheritance and created a Student and Doctor class inheriting from Human. Homework: Read and do the examples and exercises from page 167 toRead More...

4 PM – Intro To Python

We completed Robot Builder project. We started Drawing complex shapes. Homework: Create a final project proposal in a piece of paper It needs to have color. It needs to combination of rectangle,Read More...

5 PM – Introduction to Python

Today we went over: The While Loop homework (pgs. 121, 123) Announced a quiz that will take place during class on 12/19 An overview of everything we've learned so far (can beRead More...

6 PM – Python Game Development

We started Birdie project We learned how to load an image into the memory self.bird = pygame.image.load("assets/bird01_A.png") We learned how to draw an loaded image into the screen self.screen.blit(self.bird, (0,0)) We learnedRead More...