Alveyworld Inc.
  • Home
  • Apple Basics
  • Join Alveyworld

Computer Programming I

  • Super Alveyworld REPO (Git Hub)
  • Disclosure Statement
    (Must print/sign/return form)
  • Scratch Reference Guide
  • Scratch Challenges
  • Python.org
  • Think Python (online book)
  • Rur-ple the robot
  • Codecademy.com
  • CodingBat.com
  • Slide Shows
Computer Programming State Standards
File Size: 33 kb
File Type: pdf
Download File

Practice Python Test

Click here to take the test
SIMPLE LOGIN!!!!

polygons.py
File Size: 0 kb
File Type: py
Download File

Patterns with Shapes

We are going use the shapes we made to create some patterns using for loops and random colors.

1. First make a file called patterns.py and copy the code on this page to  make patterns using a circle. Then add functions to your patterns.py file that make similar patterns using all the shape functions you defined. 

2. Make the following functions that draw patterns:
CirclePattern
Triangle Pattern
Square Pattern
Hexagon Pattern
etc.

Shapes with Turtle

Import the turtle program and write a function to draw each of the following shapes using the included turtle functions

3. Triangle
4. Square
5. Pentagon
6. Hexagon
7. Heptagon
8. Octagon
10. Decagon
12. Dodecagon 


Start with this in a file called shapes.py:
----shapes.py-----------------------
import turtle
turtle.color("blue","blue")
turtle.pensize(5)

def Triangle():
    for i in range(3):
        turtle.forward(100)
        turtle.right(120)

Triangle()

------end shapes.py-------------------

Turtle functions (or commands)
forward()
backward()
right()
left()
goto()
speed()
color()
pensize()
clear()

Learning Python the Hard Way

This quarter we are going to go over everything you should know about python using this book: 
Learn Python the Hard Way

Test on Object Oriented Programming

Take this quiz then email me your score to zack.alvey@gmail.com



Super Alveyworld Game (click Alvey to got to GIT Hub)

Picture

Python Gaming

face.jpg
File Size: 24 kb
File Type: jpg
Download File

examples.zip
File Size: 830 kb
File Type: zip
Download File

Picture
You have two tasks to complete to prepare for creating games in pythons
Click Here to Begin

Learning Test. Have we learned anything?

Take this test to find out (click here)

Challenge Task for Friday November 15th

retrogamelib-0.2.zip
File Size: 225 kb
File Type: zip
Download File

<--  Download the retrogamelib-0.2.zip file and unzip it.

Go into the retrogamelib/BubbMan folder and open BubbMan.py in TextWrangler. Play the game.

Then open retrogamelib/BubbMan/data/ folder and find open all the images in photoshop and color them.

Save the colorful changes and play the game in color.

Challenge: Make BubbMan invincible or make him jump super high or some other sweet mod.

Take these two tests


0. Programming Concepts
1. Binary Numbers
Powered by Create your own unique website with customizable templates.
  • Home
  • Apple Basics
  • Join Alveyworld