python
a546167160
这个作者很懒,什么都没留下…
展开
-
python取二维数组中的某一列
lista=[[1,2,3], [4,5,6]]a[:, 0] # 尝试用数组的方法读取一列失败TypeError: list indices must be integers or slices, not tuplenumpy array转为array即可a = np.array(a)a[:, 0]array([1, 4])array转lis...原创 2019-03-11 17:23:28 · 45691 阅读 · 3 评论 -
Python 统计字符串里每个字符出现的次数的三种方法
set defaultcount = {}for character in message: count.setdefault(character, 0) # 确保了键存在于 count 字典中(默认值是 0) count[character] = count[character] + 1if elsecount = {}for i in message: if...转载 2019-03-13 09:25:11 · 26792 阅读 · 0 评论