Solved

What List Will Be Referenced by the Variable List_strip After

Question 24

Multiple Choice

What list will be referenced by the variable list_strip after the following code executes?
My_string = '03/07/2018'
List_strip = my_string.split('/')


A) ['3', '7', '2018']
B) ['03', '07', '2018']
C) ['3', '/', '7', '/', '2018']
D) ['03', '/', '07', '/', '2018']

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions