书栈网 · BookStack 本次搜索耗时 0.045 秒,为您找到 39897 个相关结果.
  • Python 3 教程

    5849 2018-07-23 《Python 3 教程》
    Python 3 教程 Python 3 教程 Python 是一门简单易学、功能强大的编程语言。它具有高效的高级数据结构和简单而有效的面向对象编程方法。Python 优雅的语法和动态类型、 以及其解释性的性质,使它在许多领域和大多数平台成为脚本编写和快速应用程序开发的理想语言。 从 Python 网站 http://www.python.org/...
  • Deploying Python applications

    Deploying Python applications Overview Creating the app Application code Git deployment Listing dependencies Running the application Deployment hooks Going further Depl...
  • python-docx

    python-docx What it is good for? Installed with Python by default Installed with Anaconda How to install it? Example Where to learn more? python-docx What it is good fo...
  • Stackoverflow about Python

    待翻译 打发无聊时间翻译的Stack Overflow关于Python的部分,一来是为了学习Python,二来是为了学习英语,就这样. PS:按vote排名翻译 待翻译 13 http://effbot.org/zone/default-values.htm 20 http://stackoverflow.com/questions/1...
  • Python推荐模块

    Python推荐模块 新的数据集 项目实践 Python推荐模块 我将本章学到的内容都汇集成了一个Python类,虽然代码 有些长,我还是贴在了这里: import codecs from math import sqrt users = { "Angelica" : { "Blues Traveler" : ...
  • Python语言特性

    36382 2018-03-24 《Python面试题》
    1 Python的函数参数传递 看两个例子: a = 1 def fun ( a ): a = 2 fun ( a ) print a # 1 a = [] def fun ( a ): a . append ( 1 ) fun ( a ) print a # [...
  • Python代码规范

    前言 目录 前言 Python 学习之旅,先来看看 Python 的代码规范,让自己先有个意识,而且在往后的学习中慢慢养成习惯 目录
  • Python 2+

    Python 2系列版本 Python 2系列版本 你可以创建任意种类的缓存机制,有若干种方式来达到相同的效果,这完全取决于你的需要。这里是一个一般的缓存: from functools import wraps def memoize ( function ): memo = {} @wraps (...
  • 安装 Python 模块

    安装 Python 模块 关键术语 基本使用 我应如何 …? … 在 Python 3.4 之前的 Python 版本中安装 pip ? … 只为当前用户安装软件包? … 安装科学计算类 Python 软件包? … 使用并行安装的多个 Python 版本? 常见的安装问题 在 Linux 的系统 Python 版本上安装 未安装 pip ...