How to use Python min() built-in function

preview_player
Показать описание
In this beginner's Python tutorial, you will learn how to use the min() built-in Python function. The min() function returns the lowest element value in a Python iterable. The min() function comes with a standard installation of Python 3.

Don't forget to like and subscribe!!!

Check out this video:
Python Basics | First Game

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

Why the output of the following is John and not imran? (I intentionally didn't capitalize):
x = min("Mike", "John", "imran")
print(x)

mek