初級Python中map函式的運用以及列表轉字串的方法

youngzero發表於2017-12-04
# map 函式 是python 內部提供的一個函式,是用來將map內部的元素變成單個字元儲存在列表中
list1 = [1,2,3,4,5,6,7,8,9]
str1 ="zhangsan"
list2= list(map(str,list1)) 
str2 = list(map(str,str1))   
print(list2)  # #['1', '2', '3', '4', '5', '6', '7', '8', '9']
print(str2)   ##['z', 'h', 'a', 'n', 'g', 's', 'a', 'n']
#  列表轉成字串
#   "".join(list)      ""中是用來新增 字元 的,然後用新增的字元將列表中的元素連線成字串
str3 = ",".join(list2)
print(str3)  #  1,2,3,4,5,6,7,8,9

相關文章