October 2013
Beginner
600 pages
15h 18m
English
What You’ll Learn in This Hour:
Working with tuples and lists
Using multidimensional lists
Building lists with comprehensions
When you work with variables, sometimes it comes in handy to group data values together so that you can iterate through them later in your script. You can’t easily do that with separate variables, but Python provide a solution for you.
Most programming languages use array variables to hold ...