#!/usr/bin/python #Let's define a class, shall we? #This is an 'old-style' class class Bird: #variables we assign here will be *class variables* birdness=9 def tweet(self): print "tweet tweet!" #Try using this from the interactive prompt