by CodeChum Admin
Let us now try comparing two numbers by letting the user input two different numbers and say "Greater" if the first inputted number is greater than the second one, and "Lesser" if it’s the other way around.
Let's go!
Input
A line containing two different numbers separated by a space.
1.2·1.02
Output
A line containing a string.
Greater
entered_list = input("Enter 2 numbers separated by a space: ").split()
num_list = list(map(float, entered_list))
if num_list[0] > num_list[1]:
print("Greater")
else:
print("Lesser")
Comments
Leave a comment