Pankaj Kumar

Pankaj Kumar

I have been working on Python programming for more than 12 years. At AskPython, I share my learning on Python with other fellow developers.

Python String split() function

Python string split() functions enable the user to split the list of strings. It’s very useful when we are working with CSV data. String split() function syntax separator: It basically acts as a delimiter and splits the string at the…

Python Directory Operations

Directory is basically a structure that contains all the corresponding documents, files, and folders. Python’s os module contains multiple functions for directory management. Python directories functions os.access(path, mode)It uses the uid to check for the path’s access. os.chdir(path)It changes the…

Python String isnumeric() Function

Python String isnumeric() function returns True if all the characters in the input string are found to be of numeric type, else it returns False. A numeric character can be of the following type: numeric_character=Decimal numeric_character=Digit numeric_character=Numeric Syntax: isnumeric() arguments:…

Getpass Module

Python getpass Module

Python getpass module enables to prompt the user for a password without displaying it on the screen. Thus, it can customize the user’s experience. Python’s getpass module enables secure and user-friendly handling of password input. It lets you prompt the…