📜  python 跳线 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:25.086000             🧑  作者: Mango

代码示例1
# If you want to skip a line, then you can do that with "\n"
print("Hello\n World\n!")
#It should print: 
#Hello
#World
#!