Min and max function : Python tutorial 105

preview_player
Показать описание
Guys please help this channel to reach 20,000 subscribers. I'll keep uploading quality content for you.

Python is easy programming language to learn and anyone can learn it, and these tutorials are 100% free in hindi.

You can share this playlist with your brother, sisters and friends. This will surely add some values to their life.

If you follow this complete playlist of python tutorial surely you will learn everything about python programming language.

This video is all about "min and max function"

Рекомендации по теме
Комментарии
Автор

please if u are going to speak a
different language write it in the title

nooruddin-ali
Автор

numbers = [10, 2, 3, 40, 5, 60]
print(min(numbers))
print(max(numbers))


def greatest_diff(i):
     return max(i) - min(i)
print(greatest_diff(numbers))

sagarbhagat
Автор

numbers = [1, 8, 9]
def max_num(l):
return max(l)
print( max_num(numbers))

 
RESULT= 9

kailashkumar
Автор

You are doing great work. Please start other languages like Java, C, C++ etc...

dishankshah
Автор

def greatest_difference(l):
return max(l)-min(l)

num=[10, 123, 200]


avilashbhowmik
Автор

Number=[10, 20, 100, ]
Def a [l]
C=max(number)-min(number)
Return c
Print(a(number))

deeplines
Автор

# num = [10, 2, 3, 40, 5, 60]
# print(min(num))
# print(max(num))
# def g_d(l):
# return max(l) - min(l)
# print(g_d(num))

jatintomar
Автор

Sir, if you do not mind, may i get your email. I have an issue with the max-min fun in my source code, i want to know the reason behind it.

Maneesh
Автор

def chek_equal(l1, l2):
output_out=[]

for i in l1:
if i in l2:
output_out.append(i)
return output_out


x=(input("enter any numbers"))
y=(input("enter any numbers"))

print(chek_equal(x, y))

Sumit-jzvk
Автор

l=[1, 2, 5, 8]
def greatest_diff(l):
return max(l) - min(l)
print(greatest_diff(l))

NavneetKumar-otbg
Автор

Sir agar hmari list mae numbers ke sath strings bhi ho to hum kesse min value find krege?

jaspreetpannu
Автор

If a person knows only python language. Can he do IOT ? plz rply .

mrutyunjayalenka
Автор

Sir
While taking the input from the user, I'm not getting the correct output for min and max.
Please help

martinamartin
Автор

But what if the program has to display the min and max numbers entered by the user

MuhammadAsghar-tebu