Lesson 1 : Variables, STRINGS, and LISTS

In this lesson, you will run your first Python program. You will also learn about the different kinds of data you can work with in your Python programs. You'll also learn how to use variables to represent data in your programs.

The next thing you'll learn is what lists are and how to start working with the elements in a list. Lists allow you to store sets of information in one place, whether you have a couple of items or thousands of items. Lists are one of Python's most powerful features, and they tie together many important concepts in programming.