摘要: class LazyImport: def __init__(self,module_name): self.module_name = module_name self.module = None def __getattr__(self,n... 阅读全文
posted @ 2015-10-06 13:30 高山流的不是水 阅读(172) 评论(0) 推荐(0) 编辑
摘要: #使用str.format()函数 #使用'{}'占位符 print('I\'m {},{}'.format('Hongten','Welcome to my space!')) >>> I'm Hongten,Welcome to my space! print('#' * 40) #... 阅读全文
posted @ 2015-10-06 13:21 高山流的不是水 阅读(173) 评论(0) 推荐(0) 编辑