计算一个非负整数位数的函数,返回非负整数的位数
时间: 2024-04-30 17:18:40 浏览: 138
python 输入非负整数n计算n! 示例
以下是一个 Python 函数:
``` python
def digit_count(n):
return len(str(n))
```
该函数接受一个非负整数 `n` 作为参数,将其转换为字符串并返回其长度,即为该整数的位数。例如:
``` python
>>> digit_count(12345)
5
>>> digit_count(0)
1
>>> digit_count(1000000000000)
13
```
阅读全文