13 Python Tricks and Tips [in 2023]

Here is a list of 10+ Python tricks and tips you can use to write cleaner code. I hope you enjoy it.

One-Liner If-Else in Python

Sometimes when an if-else expression is simple enough, it might actually be cleaner to write it as a one-liner:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
isReady = False
# A regular if-else
if isReady:
print("Yay")
else:
print("Nope")
# A neat little shorthand
print("Yay") if isReady else print("Nope")
isReady = False # A regular if-else if isReady: print("Yay") else: print("Nope") # A neat little shorthand print("Yay") if isReady else print("Nope")
isReady = False

# A regular if-else
if isReady:
    print("Yay")
else:
    print("Nope")
    
# A neat little shorthand
print("Yay") if isReady else print("Nope")

But be careful not to overdo this. It can make your code unreadable even when the intent is to make it cleaner.

Swap Two Variables without a Helper Variable

This is a classic interview question: How can you swap two variables without using a third helper variable?

Yes, it is possible by:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
a = 1
b = 2
a, b = b, a
# Now a = 2 and b = 1
a = 1 b = 2 a, b = b, a # Now a = 2 and b = 1
a = 1
b = 2

a, b = b, a

# Now a = 2 and b = 1

Chain Comparisons

Instead of doing two separate comparison conditions:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
x > 0 and x < 200
x > 0 and x < 200
x > 0 and x < 200

You can chain them together as you do in maths:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
0 < x < 200
0 < x < 200
0 < x < 200

One-Liner For-Loops in Python

You can use what is called list comprehension to loop through a list neatly with one line of code.

For example, let’s square each number in a list of numbers:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
numbers = [1, 2, 3, 4, 5]
[num * num for num in numbers]
numbers = [1, 2, 3, 4, 5] [num * num for num in numbers]
numbers = [1, 2, 3, 4, 5]
[num * num for num in numbers]

The result:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
[1, 4, 9, 16, 25]
[1, 4, 9, 16, 25]
[1, 4, 9, 16, 25]

Using comprehensions is not restricted to only lists.

You can use a similar syntax with dictionaries, sets, and generators too. For instance, let’s use dictionary comprehension to square values of a dictionary:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
dict1 = {'a': 1, 'b': 2, 'c': 3, 'd': 4}
{ key: num * num for (key, num) in dict1.items() }
dict1 = {'a': 1, 'b': 2, 'c': 3, 'd': 4} { key: num * num for (key, num) in dict1.items() }
dict1 = {'a': 1, 'b': 2, 'c': 3, 'd': 4}
{ key: num * num for (key, num) in dict1.items() }

The result:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
{'a': 1, 'b': 4, 'c': 9, 'd': 16}
{'a': 1, 'b': 4, 'c': 9, 'd': 16}
{'a': 1, 'b': 4, 'c': 9, 'd': 16}

Lambda Expressions—Write Shorter Python Functions

In Python, a lambda function is just a nameless function. It can take any number of arguments but can only have a single expression.

For instance, here is a lambda that multiplies a number by three:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
lambda x : x * 3
lambda x : x * 3
lambda x : x * 3

Lambdas are useful when you need the functionality for a short period of time. A practical example is filtering a list. Python’s built-in filter method takes two parameters:

  • A filtering function (this is a lambda function)
  • A list to be filtered

As an example, let’s filter even numbers from a list by passing a lambda function into the filter() method to check if a number is even:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
numbers = [1, 2, 3, 4, 5, 6]
list(filter(lambda x : x % 2 == 0 , numbers))
numbers = [1, 2, 3, 4, 5, 6] list(filter(lambda x : x % 2 == 0 , numbers))
numbers = [1, 2, 3, 4, 5, 6]
list(filter(lambda x : x % 2 == 0 , numbers))

The result:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
[2, 4, 6]
[2, 4, 6]
[2, 4, 6]

Repeat Strings without Using Loops

You can simply multiply a string by an integer to repeat it as many times as you prefer:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
print("word" * 4)
print("word" * 4)
print("word" * 4)

Output:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
wordwordwordword
wordwordwordword
wordwordwordword

How to Reverse a String in Python

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sentence = "This is just a test"
sentence[::-1]
sentence = "This is just a test" sentence[::-1]
sentence = "This is just a test"
sentence[::-1]

Result:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
tset a tsuj si sihT
tset a tsuj si sihT
tset a tsuj si sihT

Simplify If-Statement Conditions

Would you agree that this looks pretty bad, even though there’s nothing wrong with it?

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
if n == 0 or n == 1 or n == 2 or n == 3 or n == 4 or n == 5:
if n == 0 or n == 1 or n == 2 or n == 3 or n == 4 or n == 5:
if n == 0 or n == 1 or n == 2 or n == 3 or n == 4 or n == 5:

Instead of this mess, you can make it look better by doing this:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
if n in [0, 1, 2, 3, 4, 5]
if n in [0, 1, 2, 3, 4, 5]
if n in [0, 1, 2, 3, 4, 5]

Find the Most Frequent Element in a List in Python

To find the most frequently occurring element in a list, you can do:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
max(set(nums), key = nums.count)
max(set(nums), key = nums.count)
max(set(nums), key = nums.count)

For example:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
nums = [2, 2, 6, 2, 2, 3, 4, 2, 13, 2, 1]
max(set(nums), key = nums.count)
nums = [2, 2, 6, 2, 2, 3, 4, 2, 13, 2, 1] max(set(nums), key = nums.count)
nums = [2, 2, 6, 2, 2, 3, 4, 2, 13, 2, 1]
max(set(nums), key = nums.count)

This gives you 2 as the most frequent number in the list.

Tear Values to Variables from a List

You can easily destructure list elements into separate variables.

For example:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
arr = [1, 2, 3]
a, b, c = arr
print(a, b, c)
arr = [1, 2, 3] a, b, c = arr print(a, b, c)
arr = [1, 2, 3]
a, b, c = arr
print(a, b, c)

Output:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
1 2 3
1 2 3
1 2 3

Use F-Strings to Format Strings in Python

With Python 3.6 and later, you can use F-Strings to embed expressions inside strings. As an example:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
name = "Matt"
age = 25
sentence = f"Hi, I'm {name} and I'm {age} years old"
print(sentence)
name = "Matt" age = 25 sentence = f"Hi, I'm {name} and I'm {age} years old" print(sentence)
name = "Matt"
age = 25

sentence = f"Hi, I'm {name} and I'm {age} years old"
print(sentence)

Output:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
H, I'm Matt and I'm 25 years old.
H, I'm Matt and I'm 25 years old.
H, I'm Matt and I'm 25 years old.

Simulate Coin Toss in Python

You can use the choice() method of the random module to pick random elements from a list.

For example, if you want to simulate tossing a coin, you can do:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
import random
random.choice(['Head',"Tail"])
import random random.choice(['Head',"Tail"])
import random
random.choice(['Head',"Tail"])

Join a List of Strings in Python

To join a list of strings, use the built-in join() method of a string.

For example:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
words = ["This", "is", "a", "Test"]
print(" ".join(words))
words = ["This", "is", "a", "Test"] print(" ".join(words))
words = ["This", "is", "a", "Test"]
print(" ".join(words))

Output:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
This is a Test
This is a Test
This is a Test

Thanks for reading!

Read Also

Programming Glossary