1 #!/usr/bin/env python 2 3 class C: 4 pass 5 6 c = C() 7 c.a = 123 8 result_123 = c.a 9 10 # vim: tabstop=4 expandtab shiftwidth=4