Complete the missing lne of code below so that it will dipla…
Questions
Cоmplete the missing lne оf cоde below so thаt it will diplаy "You get pаid pretty good" as long the user makes $19 - $24 per hour: pay = float(input("How much do you make per hour: ")) if pay >= 25: print("You are paid well")#Write the missing code here print("You get paid pretty good")else: print("You shoud ask for a raise")