Computer Science, asked by nf7speed, 5 months ago

An integer in python can be of any length(True or false)​

Answers

Answered by DisneyPrincess29
3

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)) .

Similar questions