摘要: #!/usr/bin/env python# !-*-coding:utf-8-*-class Setting(): name = "asdfa" age = "18" def __init__(self): passclass MyClass(): def _... 阅读全文
posted @ 2014-12-10 20:42 UCanBeFree 阅读(148) 评论(0) 推荐(0)
摘要: 迭代器使用方法:#!/usr/bin/env python# !-*-coding:utf-8-*-__author__ = 't'class anyIter(object): def __init__(self, li): self.li =iter(li) def __... 阅读全文
posted @ 2014-12-10 18:51 UCanBeFree 阅读(119) 评论(0) 推荐(0)