使用元组或字典中的参数调用函数
# -*- coding: utf-8 -*- def abc(str): print(str) apply(a…
阅读全文 »# -*- coding: utf-8 -*- def abc(str): print(str) apply(a…
阅读全文 »有两个文件 test1和test2 test1 # -*- coding: utf-8 -*- def abc(x): …
阅读全文 »出于实际需要,有几种通常在函数式编程语言例如 Lisp 中出现的功能加入到了 Python 。通过 lambda 关键字…
阅读全文 »安装 Flask 最便捷的方式是使用虚拟环境。虚拟环境是 Python 解释器的一个私有副本,在 这个环境中你可以安装私…
阅读全文 »有现成的安装包 https://pypi.python.org/pypi/MySQL-python/1.2…
阅读全文 »在头部加上 # -*- coding: utf-8 -*- 再给抓取到的HTML加上 print unicode(htm…
阅读全文 »