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. SignatureParametersNo 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. 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. Output: True False Python String isdecimal() Method Example 3Here, we are checking special chars also. Output: True False
Next TopicPython Strings
|
JavaTpoint offers too many high quality services. Mail us on [email protected], to get more information about given services.
JavaTpoint offers college campus training on Core Java, Advance Java, .Net, Android, Hadoop, PHP, Web Technology and Python. Please mail your requirement at [email protected]
Duration: 1 week to 2 week