LearnPython_week4】的更多相关文章

1.装饰器2.生成器3.迭代器4.内置方法5.可序列化6.项目规范化 1.装饰器 # -*- coding:utf-8 -*- # Author:Wong Du ### 原代码 def home(): print("Welcome to home...") def shoe(): print("Welcome to shoe...") def clothes(): print("Welcome to clothes...") def gift()…