Skip to content

Commit d91ac53

Browse files
authored
Update 25_reading_list.py
1 parent b888177 commit d91ac53

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

5-lists/25_reading_list.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Reading List 📚
22
# Codédex
33

4-
books = ['Zero to One',
5-
'The Lean Startup',
4+
books = ['Harry Potter',
5+
'1984',
6+
'The Fault in Our Stars',
67
'The Mom Test',
7-
'Made to Stick',
88
'Life in Code']
99

1010
print(books)
1111

12-
books.append('Zero to Sold')
13-
books.remove('Zero to One')
14-
books.pop(0)
12+
books.append('Pachinko')
13+
books.remove('The Fault in Our Stars')
14+
books.pop(1)
1515

1616
print(books)

0 commit comments

Comments
 (0)