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
line = "What will have so will"
L = line.split('a')
for i in L:
print(i, end=' ')
You must be Logged in to update hint/solution