Respuesta :
Answer:
Explanation:
Question 1
value=float(input("Enter a number: "))
if (value > 45.6):
print("Greater than 45.6")
Question 2
num= float(input("Enter a Number: "))
if (num >= 90):
print("Great!")
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!!!
Explanation: