Популярное

Музыка Кино и Анимация Автомобили Животные Спорт Путешествия Игры Юмор

Интересные видео

2025 Сериалы Трейлеры Новости Как сделать Видеоуроки Diy своими руками

Топ запросов

смотреть а4 schoolboy runaway турецкий сериал смотреть мультфильмы эдисон
dTub
Скачать

Python List Sorting | How To Sort List In Python | FREE Python Lessons

Автор: NetworkShip

Загружено: 25 мар. 2021 г.

Просмотров: 101 просмотр

Описание:

Python List are one of the most important data types used in python. Sometimes, we sort the items inside a list. This sorting is ascending by default. We can also do this sorting as descending by using reverse parameter as True.Because by default, this parameter is set to False.

Below, you can find two examples on Python List Sorting:


The first example is for ascending sorting:

list1 = [123, 28, 53, 5, 17, 80, 72]
list1.sort()
print(list1)

The output of this python code is like below:

[5, 17, 28, 53, 72, 80, 123]


The second example is for descending sorting:

list1 = [123, 28, 53, 5, 17, 80, 72]
list1.sort(reverse=True)
print(list1)

The output of this python code will be:

[123, 80, 72, 53, 28, 17, 5]

.
Python Course: https://ipcisco.com/course/python-pro...
Python List Sort : https://ipcisco.com/lesson/python-lis...
.
#pythonlists #pythonlistsort #pythonsorting #python #python3 #pythonprogramming #freepythoncourse

Python List Sorting | How To Sort List In Python | FREE Python Lessons

Поделиться в:

Доступные форматы для скачивания:

Скачать видео mp4

  • Информация по загрузке:

Скачать аудио mp3

Похожие видео

Learn Python List Methods Quickly! | FREE Python Course

Learn Python List Methods Quickly! | FREE Python Course

threading vs multiprocessing in python

threading vs multiprocessing in python

كورس لغة بايثون في 300 دقيقة | برمجة من الصفر

كورس لغة بايثون في 300 دقيقة | برمجة من الصفر

Yaml Tutorial | Learn YAML in 18 mins

Yaml Tutorial | Learn YAML in 18 mins

Python Tutorial for Beginners 6: Conditionals and Booleans - If, Else, and Elif Statements

Python Tutorial for Beginners 6: Conditionals and Booleans - If, Else, and Elif Statements

MOSFET Explained - How MOSFET Works

MOSFET Explained - How MOSFET Works

A history of attempts to fix English spelling

A history of attempts to fix English spelling

Сказка Цветик-семицветик - Золотая коллекция Союзмультфильм

Сказка Цветик-семицветик - Золотая коллекция Союзмультфильм

Древний Рим за 20 минут

Древний Рим за 20 минут

Gibran Alcocer's Best Ambient Playlist Vol.1✨

Gibran Alcocer's Best Ambient Playlist Vol.1✨

© 2025 dtub. Все права защищены.



  • Контакты
  • О нас
  • Политика конфиденциальности



Контакты для правообладателей: [email protected]