您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. Python风格语言规范(google).pdf

  2. Python官方风格规范文档,编码规范,二合一pdf文档, https://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/python_language_rules/ https://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/python_style_rules/ 在线版不提供下载,如果下载需求的 可以
  3. 所属分类:Python

    • 发布日期:2019-07-02
    • 文件大小:1048576
    • 提供者:qq_18453581
  1. 在Python 3中实现类型检查器的简单方法

  2. 主要介绍了在Python 3中实现类型检查器的简单方法,包括对函数注解这个新特性的介绍,需要的朋友可以参考下
  3. 所属分类:其它

    • 发布日期:2020-09-21
    • 文件大小:58368
    • 提供者:weixin_38595689
  1. 在Python 3中实现类型检查器的简单方法

  2. 示例函数 为了开发类型检查器,我们需要一个简单的函数对其进行实验。欧几里得算法就是一个完美的例子:   def gcd(a, b): '''Return the greatest common divisor of a and b.''' a = abs(a) b = abs(b) if a < b: a, b = b, a while b != 0: a, b = b, a % b return a 在上面的示例中,参数 a 和 b 以及返回值应
  3. 所属分类:其它

    • 发布日期:2020-12-25
    • 文件大小:61440
    • 提供者:weixin_38622125