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

诸如下面这种的,数据一长格式排版就不好看了,不知道如何排版是好?

诸如下面这种的,数据一长格式排版就不好看了,不知道如何排版是好?

江户川乱折腾 2023-04-19 22:18:38
result = Animal.filter(name='dog', sex='female', age='2', color='yellow').limit(100).order(born)
查看完整描述

2 回答

?
慕哥6287543

TA贡献1831条经验 获得超10个赞

Yes:

# Aligned with opening delimiterfoo = long_function_name(var_one, var_two,
                         var_three, var_four)# More indentation included to distinguish this from the rest.def long_function_name(
        var_one, var_two, var_three,
        var_four):    print(var_one)

No:

# Arguments on first line forbidden when not using vertical alignmentfoo = long_function_name(var_one, var_two,
    var_three, var_four)# Further indentation required as indentation is not distinguishabledef long_function_name(
    var_one, var_two, var_three,
    var_four):    print(var_one)

Optional:

# Extra indentation is not necessary.foo = long_function_name(
  var_one, var_two,
  var_three, var_four)


查看完整回答
反对 回复 2023-04-21
?
万千封印

TA贡献1891条经验 获得超3个赞

result = Animal.filter(        name='dog',        sex='female',        age='2',        color='yellow'
    ).limit(100).order(born)


查看完整回答
反对 回复 2023-04-21
  • 2 回答
  • 0 关注
  • 188 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信