70.3k views
4 votes
2.7 code practice question 1

1 Answer

2 votes

Answer:

x = int(input("Enter a number: "))

y = int(input("Enter a number: "))

z = int(input("Enter a number: "))

a = (max(x, y, z))

print ("Largest: " + str(a))

Step-by-step explanation:

Let me know if this works!

User Joe Tyman
by
7.1k points