right now the code is able to make a sentence alternating through the list if both list are the same length. But it wont run if the list are different lengths. I want the longer list to continue printing one they are done alternating.
def intersperse():
    one = str(input("enter a sentence"))
    two = str(input("enter a sentence"))
    a = one.split()
    b = two.split()
    sentence = " "
    #min_len = min(len(a),len(b))
    if len(a) > len(b):
        min_len = a
    else:
        min_len = b
    for i in min_len:
        sentence += a.pop(0) + " " + b.pop(0) + " "
    print(sentence)
intersperse()
 
     
     
     
    