Basic Python Hello World Program Syntax Error

后端 未结 5 1182
自闭症患者
自闭症患者 2020-12-12 01:17

I am not that really new in Programming but in Python I am really a newbie, and so when I started learning Python from the tutorials they encouraged me to use the IDLE edito

5条回答
  •  遥遥无期
    2020-12-12 01:33

    You need to use single (') or double (") quotes, not fancy quotes or diaereses as you did.

    print "Hello, World!" 
    

提交回复
热议问题