list = [1.3, 2.3, 4, 5] #带有float型的列表>>> int_list = map(int,list) #使用map转换>>> print int_list [1, 2, 4, 5]. 第二种方法:使用for循环.
確定! 回上一頁