Lesson 3 - Variables

In this lesson, we will learn about variables which is one of the most vital parts of the Python language by defining information. Skills in this lesson will ultimately be a very important predecessor to later lessons.

    my_name = "Python Lesson"
    print(my_name)
    my_age = 17
    print(3*my_age)
    print(my_age)
    print("I am ", my_age, " years old")
        
< Previous Next >