python如何將多位數拆分為單個?
你可以將數字轉換為字符串,然后遍歷字符串并將每個字符轉換為整數: >>> [int(char) for char in str(634)][6, 3, 4] 使用map(): >>> map(int, str(634)
) # Python 2[6, 3, 4]>>> list(map(int, str(634))
) # Python 3[6, 3, 4]
python如何將多位數拆分為單個?
你可以將數字轉換為字符串,然后遍歷字符串并將每個字符轉換為整數: >>> [int(char) for char in str(634)][6, 3, 4] 使用map(): >>> map(int, str(634)
) # Python 2[6, 3, 4]>>> list(map(int, str(634))
) # Python 3[6, 3, 4]