C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Python String isdecimal() MethodPython 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. Signatureisdecimal() ParametersNo parameter is required. ReturnIt returns either True or False. Let's see some examples of isdecimal() method to understand it's functionalities. Python String isdecimal() Method Example 1A simple example of isdecimal() method to check whether the string contains decimal value. # Python isdecimal() method example # Variable declaration str = "TheDeveloperBlog" # Calling function str2 = str.isdecimal() # Displaying result print(str2) Output: False Python String isdecimal() Method Example 2Let's try to check floating value and see the outcome. It will return False if string is not decimal. # Python isdecimal() method example # Variable declaration str = "123" # True str3 = "2.50" # False # Calling function str2 = str.isdecimal() str4 = str3.isdecimal() # Displaying result print(str2) print(str4) Output: True False Python String isdecimal() Method Example 3Here, we are checking special chars also. # Python isdecimal() method example # Variable declaration str = "123" # True str3 = "@#$" # False # Calling function str2 = str.isdecimal() str4 = str3.isdecimal() # Displaying result print(str2) print(str4) Output: True False
Next TopicPython Strings
|