为了账号安全,请及时绑定邮箱和手机立即绑定

python编码规范(三)--空行,换行,缩进

标签:
Python

1.空行

  • 空一行:用于类成员函数之间,或者用于区分不同逻辑块

  • 空两行:类与类,类与函数,函数与函数之间

class Test(object):
    """Test class,提供通用的方法"""
    def __init__(self):
        """Test的构造器:"""
        pass

    def function1(self):
        pass

    def function2(self):
        passdef function3():
    pass

2.换行

非集合元素

  • 反斜杠

with open('test.txt','w') as file_1, \
     open("test2.txt", 'w') as file_2:
    file_2.write(file_1.read())
  • 字符串

query_str = ('my name'
             'is'
             ' %s') % "Tom"print query_str
  • 二元运算符

income = (gross_wages
          + taxable_interest
          + (dividends - qualified_dividends)
          - ira_deduction
          - student_loan_interest)

3.缩进

集合元素

  • 没有子模块: 一层缩进

my_list = [
    1, 2, 3,
    4, 5, 6,
    ]

result = some_function_that_takes_arguments(    'a', 'b', 'c',    'd', 'e', 'f',
    )
  • 有子模块: 两层缩进

#if and if (this_is_one_thing        and that_is_another_thing):
    do_something()# functiondef long_function_name(
        var_one, var_two, 
        var_three,var_four):
    print(var_one)



作者:Godric_wsw
链接:https://www.jianshu.com/p/567bbc940247


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消