python的map函数 发表于 2024-05-15 阅读次数: 本文字数: 93 阅读时长 ≈ 1 分钟 简介:python的map函数 动画学会Python中的map函数 实例把int按位转换为list 1234n = 123456lst = map(int, str(n))print(list(lst))# [1, 2, 3, 4, 5, 6]