Python How To’s
A collection of small, useful, how to’s for Python.
Check if a String is a Number in Python with str.isdigit()
Edit 1: This article has been revised to show the differences between str.isdigit() and the custom solution provided. Edit 2: The sample also supports Unicode! Often you will want to check if a string in Python is a number. This happens all the time, for example with user input, fetching data from a database (which […]
Read More