Multiple Choice
Which list will be referenced by the variable list_strip after the execution of the following code?
List_string = '03/07/2008'
List_strip = list_string.split('/')
A) ['3', '7', '2008']
B) ['03', '07', '2008']
C) ['3', '/', '7', '/', '2008']
D) ['03', '/', '07', '/', '2008']
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q1: What will be assigned to the string
Q3: Which of the following string methods can
Q3: Indexing of a string starts at 1
Q4: If the + operator is used on
Q6: Which method would you use to determine
Q7: The strip() method returns a copy of
Q9: What will be assigned to s_string after
Q11: Which method would you use to determine
Q14: Indexing works with both strings and lists.
Q15: Each character in a string has a(n)_