超多量python数据怎么排版格式能更好看,python排版,诸如下面这种的,数据一长


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

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

测试勋章

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

可参考PEP8中对缩进的建议。

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)

编橙之家文章,

评论关闭