Videos
I find the one listed from the official Python documentation doesn't do a good job at highlighting all of the methods used in the supported data structures:
https://docs.python.org/3/tutorial/datastructures.html
It lists all the methods for the list data structure, which is nice, but then it changes up its flow later for the rest of the other data structures, and starts discussing in-depth about particular features of those data structures.
Also, it's not up to date. As of 3.9, Python introduced merge and union methods to dictionaries. The link above does not reference any of that.
Ideally, as much crap as w3schools has gotten in the past, they are able to display all the data structures, its methods, and a brief description in a very streamlined and condense manner.
Examples:
https://www.w3schools.com/python/python_ref_dictionary.asp
https://www.w3schools.com/python/python_ref_list.asp
https://www.w3schools.com/python/python_ref_string.asp
https://www.w3schools.com/python/python_ref_tuple.asp
https://www.w3schools.com/python/python_ref_set.asp
Is there a better site that lists all the up-to-date methods for Python data structures?
Thanks