print(“Hello, World!”) As easy that. No need for semi colon or anything! “print” is printing text that is in “” to the console. Congrats on your first lesson :D

  • @mlaunois
    link
    15 years ago

    You have to use print "Hello world" with Python 2.x. That’s because print was a statement and then became a function in 3.x.