编写函数fun将一个数字字符串转化为一个整数
时间: 2024-05-04 11:21:03 浏览: 97
字符串转化为整数
以下是一个基于 Python 的示例代码实现:
```python
def fun(num_str):
result = 0
for c in num_str:
result = result * 10 + int(c)
return result
```
该函数将输入的数字字符串 `num_str` 转化为整数,采用了迭代的方式,每次将当前字符转化为整数,并将其加入到结果中。具体来说,首先初始化结果为0,然后遍历每个字符 `c`,将结果乘10并加上 `c` 对应的整数值,最后返回结果即可。
例如,调用 `fun('1234')` 将返回整数 `1234`。
阅读全文