Skip to content

Commit 892a779

Browse files
committed
Added Lists
1 parent 7040066 commit 892a779

3 files changed

Lines changed: 377 additions & 6 deletions

File tree

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,24 @@ Based on the book writted by Al Sweigart, [Automate the Boring Stuff with Python
4242
- Local and Global Scope
4343
- The global Statement
4444
- Exception Handling
45+
- Lists
46+
- Getting Individual Values in a List with Indexes
47+
- Negative Indexes
48+
- Getting Sublists with Slices
49+
- Getting a List’s Length with len()
50+
- Changing Values in a List with Indexes
51+
- List Concatenation and List Replication
52+
- Removing Values from Lists with del Statements
53+
- Using for Loops with Lists
54+
- The in and not in Operators
55+
- The Multiple Assignment Trick
56+
- Augmented Assignment Operators
57+
- Finding a Value in a List with the index() Method
58+
- Adding Values to Lists with the append() and insert() Methods
59+
- Removing Values from Lists with remove()
60+
- Sorting the Values in a List with the sort() Method
61+
- Tuple Data Type
62+
- Converting Types with the list() and tuple() Functions
4563
- Dictionaries and Structuring Data
4664
- The keys(), values(), and items() Methods
4765
- Checking Whether a Key or Value Exists in a Dictionary

0 commit comments

Comments
 (0)