如何在Python 3.x中的变量之间添加空行?

时间:2019-02-04 20:00:39

标签: python python-3.x

尝试学习Python的编码新手。如何在Python 3.x中的变量之间添加空行?

customer_one_itemization=""

customer_one_itemization+=item1_description

customer_one_itemization+=item2_description

print(customer_one_itemization)

当前结果:

Description 1 - Description 2

我想要下一个结果:

Description 1
( Empty row )
Description 2

0 个答案:

没有答案