For example, if passed the following:
a = []
How do I check to see if a is empty?
a
if not a: print("List is empty")
Using the implicit booleanness of the empty list is quite pythonic.
list
Given a list ["foo", "bar", "baz"] and an item in the list "bar", how do I get its index (1) in Python?
Consider the following: items = [] items.append("apple") items.append("orange") items.append("banana") # FAKE METHOD: items.amount() # Should return 3 How do I get the number of elements in the list items?
What's the difference between the list methods append() and extend()?