2018年11月30日
摘要: pip install bs4 出现的 Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: 解决方法: sudo pip install bs4 --upgrade --ignore 阅读全文
posted @ 2018-11-30 10:36 python整理 阅读(1782) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-11-30 10:04 python整理 阅读(1) 评论(0) 推荐(0) 编辑
  2018年11月28日
摘要: # -*- coding: utf-8 -*-import numpy as np#创建数组list1=[1,3,5,-2,0,-9]list2=[2,4,-3,-7,1,7]list3=[[2,5,0],[-1,3,4]]list4=[[3,1,8],[9,3,9]]arry=np.array(l 阅读全文
posted @ 2018-11-28 10:10 python整理 阅读(125) 评论(0) 推荐(0) 编辑