Python 3 - String isdecimal() Method


Description

The isdecimal() method checks whether the string consists of only decimal characters. This method are present only on unicode objects.

Note − Unlike in Python 2, all strings are represented as Unicode in Python 3. Below is the example.

Syntax

Following is the syntax for isdecimal() method −

str.isdecimal()

Parameters

NA

Return Value

This method returns true if all characters in the string are decimal, false otherwise.

Example

The following example shows the usage of isdecimal() method.

#!/usr/bin/python3

str = "this2016"
print (str.isdecimal())

str = "23443434"
print (str.isdecimal())

Result

When we run above program, it produces the following result −

False
True
python_strings.htm
Advertisements