Which list will be referenced by the variable list_string after the execution of the following code?
list_string = '03/07/2008'
list_string = list_string.split('/')
Answer: ['03', '07', '2008']
list_string = '03/07/2008'
list_string = list_string.split('/')
Answer: ['03', '07', '2008']