1.如何用一个print()函数打印以下内容(格式不变)

1.如何用一个print()函数打印以下内容(格式不变)。
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.

直接输出,换行的地方使用换行符不就行了

str='''Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.'''

print(str)