Python中的多行语句

Python中的语句通常以换行结尾。但是,Python确实允许使用行继续字符(\)表示该行应该继续。例如-

total = item_one + \
        item_two + \
        item_three

包含在[],{}或()括号中的语句不需要使用换行符。例如-

days = ['Monday', 'Tuesday', 'Wednesday',
       'Thursday', 'Friday']