Answer:
for question 1:
x=input("Enter a number: ")
if(int(x > "45.6")):
print("Greater than 45.6")
print("Done!")
for question 2:
x = float(input("Enter a number: "))
if (x >= 90):
print ("Great!")
for question 3:
x = str(input("Enter the Password:"))
if (x == "Ada Lovelace"):
print ("Correct!")
if (x != "Ada Lovelace"):
print ("Not Correct")
I hope this helped!!!
Step-by-step explanation: