我应该在这段代码中的什么地方放置新的行序列 (/n)?
Where should I place new line sequence (/n) in this code?
我开始学习 Python 并且正在做一些转义序列的练习。我想通过添加更多文本并分两行来打印变量值。
例如约翰告诉哈利,
“我收到了你的礼物”。
我的代码是:
person1="john"
person2="Harry"
print(f"{person1.title()} tells {person2}," + "/nI got your gift")
但它不会在新行中打印第二部分。我应该把 /n 放在这段代码的什么地方?
您需要使用 \n
而不是 /n
:)
person1="john"
person2="Harry"
print(f"{person1.title()} tells {person2}," + "\n I got your gift")
我开始学习 Python 并且正在做一些转义序列的练习。我想通过添加更多文本并分两行来打印变量值。 例如约翰告诉哈利, “我收到了你的礼物”。
我的代码是:
person1="john"
person2="Harry"
print(f"{person1.title()} tells {person2}," + "/nI got your gift")
但它不会在新行中打印第二部分。我应该把 /n 放在这段代码的什么地方?
您需要使用 \n
而不是 /n
:)
person1="john"
person2="Harry"
print(f"{person1.title()} tells {person2}," + "\n I got your gift")