fork download
  1. class Foo(object):
  2. pass
  3.  
  4. cfg = Foo()
  5. cfg.item_i_want = "An item"
  6. print cfg.item_i_want
  7.  
Success #stdin #stdout 0.01s 7728KB
stdin
Standard input is empty
stdout
An item