您好,登錄后才能下訂單哦!
小編給大家分享一下Python如何將數(shù)字轉(zhuǎn)化成列表,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
def digitize(n): return list(map(int, str(n))) # EXAMPLES digitize(123) # [1, 2, 3]
該函數(shù)的主體邏輯是先將輸入的數(shù)字轉(zhuǎn)化成字符串,再使用map
函數(shù)將字符串按次序轉(zhuǎn)花成int
類型,最后轉(zhuǎn)化成list
。
為什么輸入的數(shù)字經(jīng)過這種轉(zhuǎn)化就可以得到一個(gè)列表呢?這是因?yàn)?code>Python中str
是一個(gè)可迭代類型。所以str
可以使用map
函數(shù),同時(shí)map
返回的是一個(gè)迭代器,也是一個(gè)可迭代類型。最后再使用這個(gè)迭代器構(gòu)建一個(gè)列表。
目前網(wǎng)絡(luò)上的常見的判斷方法是使用使用collections.abc
(該模塊在3.3以前是collections
的組成部分)模塊的Iterable
類型來判斷。
from collections.abc import Iterable isinstance('abc', Iterable) # True isinstance(map(int,a), Iterable) # True
雖然在當(dāng)前場景中這么使用沒有問題,但是根據(jù)官方文檔的描述,檢測一個(gè)對(duì)象是否是iterable
的唯一可信賴的方法是調(diào)用iter(obj)
。
class collections.abc.Iterable
ABC for classes that provide the __iter__() method.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') <str_iterator object at 0x10c6efb10>
看完了這篇文章,相信你對(duì)“Python如何將數(shù)字轉(zhuǎn)化成列表”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。