8.1k views
5 votes
What is the answer to 3.2 edhesive question 1,2,3

User Pupadupa
by
4.5k points

2 Answers

5 votes

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:

User Andrfas
by
5.1k points
5 votes

Answer:

Step-by-step 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!")

User Aebersold
by
4.5k points