Question #209682


Write a program in Python to enter three numbers and find the largest among the three


Expert's answer

numbers=[]
for i in range(1,4):
    numbers.append(int(input(f'Enter number {i}: ')))
print(f'\nThe largest among the three is: {max(numbers)}')
    




LATEST TUTORIALS
APPROVED BY CLIENTS