back to michigan, a silly snake game in python 2.7 and pygame
I'll be trying to get the forced perspective experiment done in the next couple days. I'm headed back to Michigan soon. (So long California!) There's a lot to do before we hit the road so between that and some health problems I don't know if I'll get that experiment done and posted. If you don't see a post in a while, No worries, I'll be back when I can. Here's a bit of an old code I wrote in pygame python 2.7. It's messy, and you'd have to put you're own images in, but it's basically a snake game. If coding can't be fun, what's the point? Remember it's from before I really did any real diving into code, so it's not written how I would do it today. Have fun! Reak havoc, whoever you are! # .....I didn't test it. I know it did work back in 2013 # ..... all be it badly. import sys import pygame from pygame.locals import* from sys import exit import random from random import randint pygame.init() Unic...