Categories
Python Answers

How to check if the string is empty with Python?

Spread the love

Sometimes, we want to check if the string is empty with Python.

In this article, we’ll look at how to check if the string is empty with Python.

How to check if the string is empty with Python?

To check if the string is empty with Python, we can use the not operator.

For instance, we write

if not my_string:
  # ...

to check my_string is empty with if not my_string.

Empty strings are falsy so we can use not to check if the string is empty.

Conclusion

To check if the string is empty with Python, we can use the not operator.

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *