Untitled
Anonymous
plain_text
08/03/2023 9:26 PM
292 B
13
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...