Python String isalnum() MethodPython isalnum() method checks whether the all characters of the string is alphanumeric or not. A character which is either a letter or a number is known as alphanumeric. It does not allow special chars even spaces. SignatureParametersNo parameter is required. ReturnIt returns either True or False. Let's see some examples of isalnum() method to understand it's functionalities. Python String isalnum() Method Example 1Output: True Python String isalnum() Method Example 2If there is a space anywhere in the string, it returns False. See the example below. Output: False Python String isalnum() Method Example 3Output: True False Python String isalnum() Method Example 4It returns True even the string is full of digits. See the example. Output: True Note: This method returns True if any one of these isalpha(), isdecimal(), isdigit(), or isnumeric() returns True.Next TopicPython Strings |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India