Question: PYTHON: Given: mystring = aa/bb/cc sep = '/' Which of the following will print 'bb' ? a) list = sep.split(mystring) print (list[2]) b) list =
PYTHON:
Given:
mystring = "aa/bb/cc"
sep = '/'
Which of the following will print 'bb' ?
| a) list = sep.split(mystring) print (list[2]) | ||
| b) | list = sep.split(mystring) print (list[1]) | |
| c) | list = mystring.split(sep) print (list[1]) | |
| d) | list = mystring.split(sep) print (list[2]) |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
