Print empty line?

后端 未结 7 812
青春惊慌失措
青春惊慌失措 2020-12-25 12:37

I am following a beginners tutorial on Python, there is a small exercise where I have to add an extra function call and print a line between verses, this works fine if I pri

相关标签:
7条回答
  • 2020-12-25 13:10

    Python 2.x: Prints a newline

    print      
    

    Python 3.x: You must call the function

    print() 
    

    Source: https://docs.python.org/3.0/whatsnew/3.0.html

    0 讨论(0)
提交回复
热议问题