How to find length of digits in an integer?

Strigoides picture Strigoides · Feb 3, 2010 · Viewed 436.3k times · Source

In Python, how do you find the number of digits in an integer?

Answer

GeekTantra picture GeekTantra · Feb 3, 2010

If you want the length of an integer as in the number of digits in the integer, you can always convert it to string like str(133) and find its length like len(str(123)).