Languages
[Edit]
EN

Python - check if string contains only digits

0 points
Created by:
Antonina-Trejo
357

In this article, we would like to show you how to check if string contains only digits in Python.

Quick solution:

text = "123"
print(text.isdigit())  # True
text = "123a"
print(text.isdigit())  # False

 

Practical example

In this example, we use string.isdigit() method to check if the strings contain only digits.

numbers = "123"
print(numbers.isdigit())  # True

text = "ABC"
print(text.isdigit())  # False

float_number = "1.23"
print(float_number.isdigit())  # False

Output:

True
False
False

Note:

You can also use isdecimal() method instead of isdigit().

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Cross technology - check if string contains only digits

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join