Lesson 2: Your First Python Program
How can one line of text make a computer display a message? The answer begins with the difference between Python source code and the output produced when that code is executed. In this section, the central example is print("Hello, world!"). Understanding the two forms prevents a common beginner’s mistake: treating the instruction and its result as the same thing.
