Automating tasks with lists
7 videos

0
2
Computer Science / Programming - Why Automate? Scripts and Sequences
Learn how scripts automate repetitive tasks using Python lists and sequences. Discover the difference between scripts and apps, and why ordered data matters.

0
0
Computer Science / Programming - Python Lists: Store It All in One Place
Learn Python lists basics: creating lists with square brackets, zero-based indexing, accessing elements, and avoiding IndexErrors using the len function.

0
0
Computer Science / Programming - Tracing Lists: How Your Computer Sees Them
Learn how Python lists work in memory, why indexing starts at zero, and how variables point to values rather than copying them.

1
6
Computer Science / Programming - Looping Through Lists: Three Ways to Iterate
Learn three ways to loop through a list in Python: while loops, for loops with range, and for-each loops. Understand when to use each method based on your needs.

0
4
Computer Science / Programming - String Methods: Built-In Superpowers
Learn Python string methods like lower, upper, strip, split, join, and count. Discover how to use dot syntax to unlock built-in string superpowers and handle text efficiently.

0
5
Computer Science / Programming - Pass by Assignment: The List Mutation Trap
Learn how Python passes lists to functions by reference, the difference between mutation and reassignment, and best practices to avoid unintended changes to original lists.

0
4
Computer Science / Programming - Building a Data Analyzer with Lists
Learn to build a Python program that analyzes phone screen time data using lists, loops, functions, and the accumulator pattern to track app usage and sessions.