in computer programming II we started using python
i fucking lol'd since i heard it was some sort of programing god language like assembly
first project is to make a game
im making a game were you buy/sell/breed hoerses
ive got 3 basic classes so far and im just wondering if anyone on you forums have a suggestion on were for me to go
this is a basic horse (LOL)
class BaseAlien(object)
def __init__(self, genus, species)
self.genus = genus \\ type of alien
self.species = species \\ the species of the hoers
self.age = 0 \\ age of teh hoers
self.pregnant = False \\ whether the hoers is pregnant or not
now ill show you the basic genus
class Pacer(BaseHorse):
def __init__(self, species):
class Sprinter(BaseHorse):
def __init__(self, species):
super(Sprinter, self).__init__(,"Sprinter"species)
thats about it for now