Suppose you have a string variable defined as y="stuff;thing;junk;". What would be the output from this code?
z = y.split(';')
len(z)
Suppose you have a string variable defined as y="stuff;thing;junk;". What would be the output from this code?
z = y.split(';')
len(z)