您好,登錄后才能下訂單哦!
小編給大家分享一下Python如何將數字轉化成列表,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
def digitize(n): return list(map(int, str(n))) # EXAMPLES digitize(123) # [1, 2, 3]
該函數的主體邏輯是先將輸入的數字轉化成字符串,再使用map
函數將字符串按次序轉花成int
類型,最后轉化成list
。
為什么輸入的數字經過這種轉化就可以得到一個列表呢?這是因為Python
中str
是一個可迭代類型。所以str
可以使用map
函數,同時map
返回的是一個迭代器,也是一個可迭代類型。最后再使用這個迭代器構建一個列表。
目前網絡上的常見的判斷方法是使用使用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.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>
看完了這篇文章,相信你對“Python如何將數字轉化成列表”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。