Computer Science - Text-Based Programming - Python - Introduction to Python syntax - Python in 5 Lines
First Python program, one line at a time. Line 1: print("Hello, World!") → 'This prints text to the screen. The text must be in quotes.' Line 2: name = input("What's your name? ") → 'This asks the user a question and stores the answer in a variable called name.' Line 3: print("Nice to meet you, " +