就像 C 一样,你可以将长行拆分为多个短行。但是在Python中,如果我这样做,会出现缩进错误… 可能吗?
是的,你可以在 Python 中拆分长行而不会导致缩进错误。以下是一些拆分方法
你可以
result = (some_long_function_name(arg1, arg2, arg3, arg4, arg5))
\您还可以在末尾使用反斜杠 ( )
\
result = some_long_function_name(arg1, arg2, arg3, \ arg4, arg5)
对于长字符串,你
long_string = """This is a very long string that spans multiple lines and will not cause any indentation errors."""
怀特
my_list = [ 'item1', 'item2', 'item3', ] my_dict = { ] my_dict = { ] my_dic ] 'key1': 'value1', 'key2': 'value2', }
什么时候
result = my_function( arg1, arg2, arg3, arg4, )