摘要:
t = float(input("t(℃)=")) t = float(input("t(℃)=")) 阅读全文
摘要:
How to setup multimedia on CentOS 7 You will need to also install the EPEL repository as nux-dextop depends on this for some of its packages. Step 1: 阅读全文
摘要:
import matplotlib.pyplot as pltimport numpy as np y = df.loc[0:100, 4].valuesy = np.where(y == 'Iris-setosa',-1,1)X = df.iloc[0:100,[0,2]].valuesplt.s 阅读全文
摘要:
1.确保PIP的存在 2.CMD命令进入C:\Python34\Scripts里面后再执行PIP命令安装pip install wheel # D: 和cd 地址 3.把文件最好放在\Script文件夹里面再pip install xxxx.whl 4.注意whl文件名不能改 必须一模一样和原名 当 阅读全文
摘要:
1,解决办法 "C:\\Users\\Darkness-02\\Desktop\\test.txt"多加一个反斜杠就行了2,解决办法r"C:\Users\Darkness-02\Desktop\txt.txt"变为字符串 玩具 with open("C:\\Users\\Darkness-02\\D 阅读全文
摘要:
pip of python3 installed is play well with Django and spider. #安装pip可以很好的使用django和爬虫 wget https://files.pythonhosted.org/packages/c4/44/e6b8056b6c8f2b 阅读全文
摘要:
统计序列中元素出现的频次 如何统计出某一个随机数列的元素出现的次数是多少? print (sorted(c.items(),key=lambda c:c[1])) c3 = c2.most_common(3)print(c3) 阅读全文
摘要:
学生信息系统中数据为固定格式: (名字,年龄,性别,邮箱地址,......) 学生数量很大为了减小存储开销,对每个学生信息用元组表示: ('jim',18,'male','jim8765@gmail.com') 访问时,我们使用引擎(index)访问,大量索引降低程序可读性。 1,枚举 studen 阅读全文
摘要:
现假设有一份机器人配件名单 list[头部,躯干,肢体] 头部这个list又有鼻子眼睛嘴巴这些小零件 肢体这个list有胳膊,肩膀,手。手这个list又有3种手指 所以这个list详细写出是: list=[[1,2,3,4],5,[6,7,[8,9,10]]] #我们type(list)一下完全是l 阅读全文
摘要:
Python应用:网络编程,系统网络运维,3D游戏开发,图形界面开发,科学与数字计算,web后端。 对着慕课的练习,果然慕课的实战也是差距很大 centos7 -Python3.6.3 筛选数据: 通常做法就是迭代if。 去除负数 data = [1,2,3,4,5,6,7,-2,-3,-7] re 阅读全文