溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python如何將數(shù)字轉(zhuǎn)化成列表

發(fā)布時(shí)間:2021-11-11 13:30:58 來源:億速云 閱讀:2957 作者:小新 欄目:開發(fā)技術(shù)

小編給大家分享一下Python如何將數(shù)字轉(zhuǎn)化成列表,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

1. digitize

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è)列表。

2. Python判斷對(duì)象是否可迭代

目前網(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è)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(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)容。

AI