我应该如何在 python中格式化 long for in语句?
for param_one, param_two, param_three, param_four, param_five in get_params(some_stuff_here, and_another stuff):
我发现我只能用反斜杠来制动for in语句:
for param_one, param_two, param_three, param_four, param_five \
in get_params(some_stuff_here, and_another_stuff):
但是我的 linter 有这种格式的问题,像这样格式化语句的Pythonic方式是什么?