列表list中字符串输出整形int

记录

场景:

nub = "1,5,25"
nub_type = nub.split(",")

需求 – 输出列表整形:

# 最简单的方法就是for定义的变量
product_id = [int(n) for n in nub_type]

# The second, lambda输入n,输出int(n)
product_id = list(map(lambda n: int(n), nub_type))

# The third
product_id = list(map(int, nub_type))

你可能感兴趣的:(python,web开发,flask)