
python
景阳冈逮虾户
我的天呐
展开
-
Mac下vscode的python3环境配置
python插件总是下载不下来,发现有一个这样的提示Step 1. Install a supported version of Python on your system (note: that the system install of Python on macOS is not supported).也就是mac默认安装的pytho是不支持的。但是我表示不想卸载重新安装,然后重复下载n次,最后在官网里下载到了插件,哈哈哈哈。链接:https://marketplace.visualstudi原创 2021-04-21 14:56:09 · 417 阅读 · 0 评论 -
概率分布函数--二项分布&poisson分布
import matplotlib.pyplot as pltimport numpy as np课程要求画图,查看官方文档numpy.random.binomial(n, p, size=None)n trials and p probability of success where n an integer >= 0 and p is in the interval [0,1]. size原创 2017-09-26 00:33:42 · 9648 阅读 · 0 评论 -
ubuntu下sudo apt-get install/remove错误
哇,今天因为需要在virtualbox下装xp,结果不小心搞坏了自己的apt-get–差点重装。 这里记下解决方法希望能对各位有所帮助。很暴力的方法。 来自https://zhidao.baidu.com/question/150155324.htmlsudo apt-get -f install试一下看看不行的话这样cd /var/lib/dpkgsudo mv info info.bak翻译 2017-10-19 22:25:01 · 1143 阅读 · 2 评论 -
一个小爬虫学到的
突然要听报告 写个小爬虫爬爬报告看看复(yu)习(xi)BeautifulSoup知识#!/usr/bin/python#-*-encoding=utf8-*-from bs4 import BeautifulSouphtml = """<html><head><title>The Dormouse's story</title></head><body><p class="title"原创 2017-11-09 20:32:11 · 247 阅读 · 0 评论