strict_and_tab.stdin 286B

12345678910111213141516
  1. [my_script]
  2. py =#!/usr/bin/python
  3. py =
  4. py =
  5. py =class Myclass(object):
  6. py =
  7. py = def __init__(self, status="OK"):
  8. py = self.status = status
  9. py =
  10. py = def check(self):
  11. py = print "I guess I'm %s" % self.status
  12. py =
  13. py =
  14. py =if __name__ == "__main__":
  15. py = c = Myclass()
  16. py = c.check()