A.) exists(value, my_list) B.) value in my_list C.) contains(my_list, value) D.) check(my_list, value)
A.) True B.) False C.) 0 D.) 1
A.) for B.) loop C.) while D.) do
A.) list_length(my_list) B.) length(my_list) C.) count(my_list) D.) len(my_list)
A.) To remove an element from a list B.) To add an element to the beginning of a list C.) To add an element to the end of a list D.) To sort the list
A.) remove(value) B.) delete(value) C.) pop(value) D.) discard(value)
A.) True B.) False C.) None D.) Error
A.) To define a function B.) To specify an alternative condition C.) To execute code when the condition is true D.) To execute code when the condition is false
A.) empty_dict() B.) {} C.) dict() D.) new_dict()
A.) open_file("file.txt") B.) file.open("file.txt") C.) with open("file.txt") as f: D.) read("file.txt")