活泼保温杯

文章
4
资源
0
加入时间
2年10月17天

python [example[i] for example in dataSet] 列表for循环

featList = [example[i] for example in dataSet]classList = [example[-1] for example in dataSet]将dataSet中的数据先按行依次放入example中,然后取得example中的example[i]元素,放入列表featList中>>> dataSet[[1, 1, 'yes'],...

swift字符串,数组,字典和集合的遍历

//字符串的遍历print("字符串遍历")var str = "China"for item in str.characters { print(item)}print("+++++++++++++++++++")for item in str.characters.indices { print(str[item])}print("++++++++++++++++