How to find out maximum among three numbers in python | Must Watch

preview_player
Показать описание
#new_method_maximum
#coding _is_thinking

Keywords:
Python function to find the Max of three numbers
write a python program to find biggest of given three numbers.
max number in 3 in python
Core Algorithms - Finding Max/Min Element: Python 3
Python Program to find the Biggest and Smallest of 3 numbers
Amazon Coding Interview - Google Facebook FANG-Python - Maximum product of three in an array
Frequently Asked Python Program 6: Find Maximum & Minimum Elements in an Array
Min and max function : Python tutorial 105
Рекомендации по теме
Комментарии
Автор

a=int(input("Enter a number:"))
b=int(input("Enter a number:"))
c=int(input("Enter a number:"))
if (a>b and a>c):
print("a is greater")
elif(b>a and b>c):
print("b is greater")
else:
print("c is greater")

tharneshtharun
Автор

I want to put n number of elements in the list... How can i do it

KandhaMaaran-
Автор

I want to find max no from 10 inputs. how can I do it ?

ranjithgamage