xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

Python & PEP All In One

Python & PEP All In One

Python Enhancement Proposals / Python 增强建议

demos

PEP 8 – Style Guide for Python Code

4 spaces indentation / 4 空格缩进 (💩 浪费编辑器一行的空间,限制最大 80字符一行)

# Correct: ✅

# Aligned with opening delimiter.
foo = long_function_name(var_one, var_two,
                         var_three, var_four)

# Add 4 spaces (an extra level of indentation) to distinguish arguments from the rest.
def long_function_name(
        var_one, var_two, var_three,
        var_four):
    print(var_one)

# Hanging indents should add a level.
foo = long_function_name(
    var_one, var_two,
    var_three, var_four)

# Wrong: ❌

# Arguments on first line forbidden when not using vertical alignment.
foo = long_function_name(var_one, var_two,
    var_three, var_four)

# Further indentation required as indentation is not distinguishable.
def long_function_name(
    var_one, var_two, var_three,
    var_four):
    print(var_one)

image

https://peps.python.org/pep-0008/

PEP 279 – The enumerate() built-in function

https://peps.python.org/pep-0279/

refs



©xgqfrms 2012-2021

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!


posted @   xgqfrms  阅读(11)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
历史上的今天:
2022-05-19 Github .gitattributes All In One
2022-05-19 SwiftUI Package All In One
2022-05-19 Xcode import videos & JSON data All In One
2021-05-19 css hidden resize icon All In One
2021-05-19 Git 命令行回滚一次错误的 merge All In One
2020-05-19 navigator.geolocation.getCurrentPosition
2020-05-19 浏览器 HTTP Cache 缓存的存储位置、优先级、条件、机制、原理是什么 All In One
点击右上角即可分享
微信分享提示