Python Practice Test – 1 1. Python Practice Tests What keyword begins a conditional statement in Python? if when check case None 2. Python Practice Tests What is the correct way to create a dictionary? my_dict = [key1: value1, key2: value2] my_dict = {key1: value1, key2: value2} my_dict = (key1: value1, key2: value2) my_dict = key1 => value1, key2 => value2 None 3. Python Practice Tests Which method removes an item by its index from a list? delete() pop() remove() discard() None 4. Python Practice Tests Which of these data types can be changed after creation? tuple str list int None 5. Python Practice Tests How do you exit a loop in Python? stop end break exit None 6. Python Practice Tests Which of the following is the correct syntax for defining a function in Python? def my_function(): function my_function(): define my_function(): func my_function(): None 7. Python Practice Tests Which construct is used for handling exceptions? try/catch try/except error/resolve catch/handle None 8. Python Practice Tests How do you define a function that can take any number of arguments? def func(args): def func(*args): def func(...args): def func(args...): None 9. Python Practice Tests Which symbol is used for comments in Python code? // # /* None 10. Python Practice Tests How can you include a module in your Python script? require module_name include module_name import module_name use module_name None Time's up