Python代码阅读(第2篇)(数字转化成列表)
文章图片
本篇阅读的代码实现了将输入的数字转化成一个列表,输入数字中的每一位按照从左到右的顺序成为列表中的一项。
本篇阅读的代码片段来自于30-seconds-of-python。
digitize
def digitize(n):
return list(map(int, str(n)))# EXAMPLES
digitize(123) # [1, 2, 3]
该函数的主体逻辑是先将输入的数字转化成字符串,再使用
map
函数将字符串按次序转花成int
类型,最后转化成list
。为什么输入的数字经过这种转化就可以得到一个列表呢?这是因为Python中
str
是一个可迭代类型。所以str
可以使用map
函数,同时map
返回的是一个迭代器,也是一个可迭代类型。最后再使用这个迭代器构建一个列表。Python判断对象是否可迭代 目前网络上的常见的判断方法是使用使用
collections.abc
(该模块在3.3以前是collections
的组成部分)模块的Iterable
类型来判断。from collections.abc import Iterable
isinstance('abc', Iterable) # True
isinstance(map(int,a), Iterable) # True
虽然在当前场景中这么使用没有问题,但是根据官方文档的描述,检测一个对象是否是
iterable
的唯一可信赖的方法是调用iter(obj)
。class collections.abc.Iterable
ABC for classes that provide the __iter__() method.
【Python代码阅读(第2篇)(数字转化成列表)】Checking isinstance(obj, Iterable) detects classes that are registered as Iterable or that have an __iter__() method, but it does not detect classes that iterate with the __getitem__() method. The only reliable way to determine whether an object is iterable is to call iter(obj).
>>> iter('abc')
推荐阅读
- CVE-2020-16898|CVE-2020-16898 TCP/IP远程代码执行漏洞
- 考研英语阅读终极解决方案——阅读理解如何巧拿高分
- Ⅴ爱阅读,亲子互动——打卡第178天
- 上班后阅读开始变成一件奢侈的事
- python学习之|python学习之 实现QQ自动发送消息
- 逻辑回归的理解与python示例
- 历史教学书籍
- python自定义封装带颜色的logging模块
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- 绘本讲师训练营【24期】14/21阅读原创《小黑鱼》