#!/usr/bin/env python # encoding: utf-8 class SomeClass(object): attribute = 0 def main(): c = SomeClass() c.attribute = 5 print c.attribute print SomeClass.attribute if __name__ == '__main__': main()