Max and Min in List Python|List in Python|Maximum and Minimum by Manual Programming Python

preview_player
Показать описание
Max and Min in List Python|List in Python|Maximum and Minimum by Manual Programming Python
This video is part of list in python series and python tutorial for beginners in hindi series.In this video,we are going to cover how to write program for finding minimum and maximum from a list in python.Here, we are not using any built in function.
queries covered:-
1) Max and Min in List Python
2) List in Python

Hello guys,welcome to codeyug to build your computer science skills.Here,you will learn programming tutorials and computer science tutorials from basics to advanced.


source code :-
Thanks for watching this video
Subscribe codeyug for more programming tutorials.
About this channel:-
This channel provides free tutorials on programming,coding,web development.There are programming tutorials which covers from basics to advanced absolutely in hindi.

Our social links:-
creator:-
------shantanu kejkar-------
#max #min #python #python3 #codeyug #programming #coding #tutorial #list #shantanu
Рекомендации по теме
Комментарии
Автор

list = [1, 2, 3, 4, 5] # for suppose
list.sort()
print("The Maximum element is :", list[-1], "\nThe minimum element is :", list[0])

ajaychandra