Python Functions and Tricks Cheat Sheet

Python cheat sheets are the 80/20 principle applied to coding: learn 80% of the language features in 20% of the time.Download and pin this cheat sheet to your wall until you feel confident using all these tricks. Download PDF for Printing Try It Yourself: Exercise: Modify each function and play with the output! Here’s the … Read more

The Most Pythonic Way to Check If a List Contains an Element

The standard way of checking if an element exists in a list is to use the in keyword. For example, ‘Alice’ in [1, ‘Alice’, 3] will return True while the same returns False for ‘Bob’. If you need to check more complicated conditions, use the any(condition(x) for x in list) function with a generator expression. … Read more

Convert List to Tuple | The Most Pythonic Way

Answer: The simplest, most straightforward, and most readable way to convert a list to a tuple is Python’s built-in tuple(list) function. You can pass any iterable (such as a list, another tuple, or a set) as an argument into this so-called constructor function and it returns a new tuple data structure that contains all elements … Read more

string.join(list) vs list.join(string) | Why Python’s Creators Chose The Former

If you’re like me, you may have asked yourself the following question: Why is it string.join(list) instead of list.join(string) in Python? ? The join method works with any iterable, not just with lists. Therefore, you’d have to implement it in hundreds of classes instead of just one (in the string class). Additionally, join() works only … Read more

How to Shuffle a List in Python?

Call random.shuffle(list) to randomize the order of the elements in the list after importing the random module with import random. This shuffles the list in place. If you need to create a new list with shuffled elements and leave the original one unchanged, use slicing list[:] to copy the list and call the shuffle function … Read more

How to Use Python’s Join() on a List of Objects (Not Strings)?

The most Pythonic way to concatenate a list of objects is the expression ”.join(str(x) for x in lst) that converts each object to a string using the built-in str(…) function in a generator expression. You can concatenate the resulting list of strings using the join() method on the empty string as a delimiter. The result … Read more

How to Get a List Slice with Arbitrary Indices in Python?

To extract elements with specific indices from a Python list, use slicing list[start:stop:step]. If you cannot use slicing because there’s no pattern in the indices you want to access, use the list comprehension statement [lst[i] for i in indices], assuming your indices are stored in the variable indices. People always want to know the most … Read more

[Python OOP Cheat Sheet] A Simple Overview of Object-Oriented Programming

Q: What’s the object-oriented way to become wealthy? A: Inheritance. ? Your vocabulary determines the reality of your life. In this tutorial, I have compiled the most essential terms and concepts of object-oriented programming in Python. My goal was to create the best Python OOP cheat sheet that shows them in one place. Well — … Read more