Q. What is the output of the following program?
Code:
line = "What will have so will"
L = line.split('a')
for i in L:
print(i, end=' ')
β
Correct Answer: (B)
Wh t will h ve so will