Untitled

 avatar
unknown
plain_text
2 years ago
217 B
3
Indexable
# f)	A list operation that is legal but does the "wrong" thing, and not what the programmer expects
book_titles = "Emma Night Lolita Dracula".split()

book_titles = book_titles.append('Hamplet')
print(book_titles)
Editor is loading...