摘要: from flask import current_app config = current_app.config SITE_DOMAIN = config.get('SITE_DOMAIN') 阅读全文
posted @ 2016-07-27 13:54 巫谢 阅读(1852) 评论(0) 推荐(0) 编辑
摘要: 今天看到Python中的一个修饰符'@',不了解它的使用,查看了下官方文档,有了一点了解。 原文 PEP-318 网址:http://www.python.org/dev/peps/pep-0318/ 不得不佩服老外,治学很严谨,在python网站相关网页上把为什么使用decorator(主要为了简 阅读全文
posted @ 2016-07-27 13:24 巫谢 阅读(27676) 评论(3) 推荐(1) 编辑
摘要: With语句是什么? with如何工作 阅读全文
posted @ 2016-07-27 13:20 巫谢 阅读(341) 评论(0) 推荐(0) 编辑
摘要: for line in file.readlines(): line=line.strip('\n') 阅读全文
posted @ 2016-07-27 11:33 巫谢 阅读(1806) 评论(0) 推荐(0) 编辑