#5 def first_longer_than_second(a = " ",b = " "): if len(a) > len(b) : print("True") else : print("False") first_longer_than_second("bus","python") first_longer_than_second("python","bus") first_longer_than_second("bus","bus")