November 2015
Beginner
560 pages
13h 19m
English

In this chapter you’ll learn about the different kinds of data you can work with in your Python programs. You’ll also learn how to store your data in variables and how to use those variables in your programs.
Let’s take a closer look at what Python does when you run hello_world.py. As it turns out, Python does a fair amount of work, even when it runs a simple program:
hello_world.py
print("Hello Python world!")
When you run this code, you should see this output:
Hello Python world!
When you run the file hello_world.py, the ending .py indicates that the file is a Python ...
Read now
Unlock full access