Python String isdecimal() MethodLast Updated : 30 Dec 2025 Python isdecimal() method checks whether all the characters in the string are decimal or not. Decimal characters are those have base 10. This method returns boolean either true or false. Syntax of Python String isdecimal() MethodIt has the following syntax: ParametersNo parameter is required. ReturnIt returns either True or False. Different Examples for isdecimal() Method in PythonLet's see some examples of isdecimal() method to understand it's functionalities. Example 1A simple example of isdecimal() method to check whether the string contains decimal value. Output: False Example 2Let's try to check floating value and see the outcome. It will return False if string is not decimal. Output: True False Example 3Here, we are checking special chars also. Output: True False Next TopicPython Strings |
We request you to subscribe our newsletter for upcoming updates.

We deliver comprehensive tutorials, interview question-answers, MCQs, study materials on leading programming languages and web technologies like Data Science, MEAN/MERN full stack development, Python, Java, C++, C, HTML, React, Angular, PHP and much more to support your learning and career growth.
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India