Horje
python see if a number is greater than other Code Example
python see if a number is greater than other
# Python program to find the largest number among the three input numbers
# take three numbers from user
num1 = float(input("Enter first number: "))
num2 = float(input("Enter second number: "))
num3 = float(input("Enter third number: "))
 
if (num1 > num2) and (num1 > num3):
   largest = num1
elif (num2 > num1) and (num2 > num3):
   largest = num2
else:
   largest = num3
 
print("The largest number is",largest)




Python

Related
how to calculate the variance of all columns in python Code Example how to calculate the variance of all columns in python Code Example
how to slice dataframe by timestamp Code Example how to slice dataframe by timestamp Code Example
sns histplot change legend labels Code Example sns histplot change legend labels Code Example
strptime() many format Code Example strptime() many format Code Example
Splitting strings in Python without split() Code Example Splitting strings in Python without split() Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7