Python sort() List Method - TUTORIAL

preview_player
Показать описание
Python tutorial on the .sort() list method. Learn how to sort values in lists in Python.

This video is part of the new List Methods series! Subscribe to get the new ones as they are released.

💻 Python List Methods Course Playlist:

📖 Please check out my Udemy course here:

🐍 Python Docs:

⚙️ Recommended Computer Gear:

✈️ Recommended Digital Nomad Gear:
Рекомендации по теме
Комментарии
Автор

Wow u are king of simplification thanks

ucbereket
Автор

I can't find video where i can learn this much knowledge but it just get very less views but still hats off 👒👒👒👒👒👒👒

allanimeworld
Автор

This is amazing if I ever want to know the meaning of a keyboard your the first guy to come in mind

n
Автор

```
['A', 'Z', 'a', 'zzz']
>>> f.sort(key=str.upper)
>>> f
['A', 'a', 'Z', 'zzz']
>>> f.sort(key=str.lower)
>>> f
['A', 'a', 'Z', 'zzz']
```

sorry, but I am confused here, why I got the same sorting of this list ???

MeriemBenAyad