python追加写换行_是否可以向.format()方法添加换行符?

我读了一本教科书,遇到了一个有趣的问题,让我用print语句打印一个地址:John Doe

123 Main Street

AnyCity, AS 09876

我正在尝试使用oneprint语句来确定是否可以这样做,但是我不知道如何在Python3中使用.format()方法添加换行符。我试过的是:>>> first = 'John'

>>> last = 'Doe'

>>> street = 'Main Street'

>>> number = 123

>>> city = 'AnyCity'

>>> state = 'AS'

>>> zipcode = '09876'

>>>

>>> ("{0} {1}\n{2} {3}\n{4}, {5} {6}").format(first, last, number, street, city, state, zipcode)

'John Doe\n123 Main Street\nAnyCity, AS 09876'

>>>

>>> ("{0} {1}'\n'{2} {3}'\n'{4}, {5} {6}").format(first, last, number, street, city, state, zipcode)

"John Doe'\n'123 Main Street'\n'AnyCity, AS 09876"

>>>

>>> ("{0} {1}{7}{2} {3}{8}{4}, {5} {6}").format(first, last, number, street, city, state, zipcode, '\n', '\n')

'John Doe\n123 Main Street\nAnyCity, AS 09876'

>>>

>>> ("{0} {1} \n {2} {3} \n {4}, {5} {6}").format(first, last, number, street, city, state, zipcode)

'John Doe \n 123 Main Street \n AnyCity, AS 09876'

这可能是一个非常简单的问题,我只是遗漏了一些非常基本的问题。谢谢你的帮助。