1. What is the output of the following program?
line =  "What will have so will"
L = line.split('a') 
for i in L: 
    print(i, end=' ') 
Answered 0 of 10 (0%)
Next Page »