lmao

bruh
 avatar
unknown
python
2 years ago
179 B
3
Indexable
todo_list = ["iron farm", "find elytra", "tame wolf"]
todo_list.append("bee_farm")

second = todo_list[2]
print(second)

actual_second = todo_list[1]
print(actual_second)
Editor is loading...