当我执行下面的代码时,解释器给了我一个SyntaxError。我该怎么修理它?
print("Day 1 - String ManipulationnString Concatenation is done with the "+" sign.n e.g. print("Hello " + "world")nNew lines can be created with a backslash and n.")
有多种方法可以使用print语句。下面列出了一些。
("你好";+ "nworld") #连接。注意:数据类型
(f"你好 nWorld。{some_othervariables}") # f-string way
("Hello n","world"