python
Sandy_Sandy_yuan
在校研究生
展开
-
XGboost预测
import pandas as pdimport matplotlib.pyplot as pltimport mathimport xgboost_regressionimport numpy as npfrom numpy import loadtxtfrom xgboost import XGBClassifierfrom sklearn.model_selection import train_test_splitfrom sklearn.metrics import accur.原创 2021-07-05 16:14:10 · 1233 阅读 · 0 评论 -
51job爬虫-正则表达式
#51job爬虫,利用正则表达式提取网页信息import requestsimport reurl='https://search.51job.com/list/180200,000000,0000,32,9,99,%25E5%2589%258D%25E7%25AB%25AF%25E5%25BC%2580%25E5%258F%2591,2,1.html'res=requests.get(...原创 2019-08-17 10:39:24 · 1188 阅读 · 0 评论 -
51job爬虫-xpath
51job,爬虫https://search.51job.com/list/180200,000000,0000,32,9,99,%25E5%2589%258D%25E7%25AB%25AF%25E5%25BC%2580%25E5%258F%2591,2,1.htmlimport requestsfrom lxml import etree#确定一个对象,及网址url='https:/...原创 2019-08-17 10:38:22 · 900 阅读 · 0 评论 -
条件,循环-练习题
题目:有1、2、3、4四个数字,能组成多少个不相同且无重复数字的三位数,请分别把它们打印出来。¶count=0for i in range(1,5): for j in range(1,5): for k in range(1,5): if i!=j and j!=k and k!=i: number=i*10...原创 2019-08-16 16:30:50 · 613 阅读 · 0 评论 -
画图-python
import matplotlib.pyplot as plt#准备绘图数据import numpy as npx=np.arange(0,1,0.05)print(x)[0. 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.55 0.6 0.65 0.7 0.75 0.8 0.85 0.9 0.95]#y=sin...原创 2019-08-14 18:00:15 · 163 阅读 · 0 评论 -
pandas用法
import pandas as pdpandas中的数据结构¶series#创建seriesfrom pandas import Seriesobj=Series([4,7,5,3])print(obj)#类似于时间序列0 41 72 53 3dtype: int64#index obj.indexRangeIndex(start=0, st...原创 2019-08-14 10:56:49 · 91 阅读 · 0 评论 -
numpy的用法
import numpy as npndarray#创建数组,arraydata1=[6,7,8,0,1]np.array(data1)#一维数组array([6, 7, 8, 0, 1])#创建多维数组data2=[[1,2,3,4],[5,6,7,8]]arr1=np.array(data2)print(data2)[[1, 2, 3, 4], [5, 6, 7, 8]...原创 2019-08-14 09:58:42 · 168 阅读 · 0 评论 -
Ajax数据
Ajax数据https://p.3.cn/prices/mgets?callback=jQuery2738866&ext=11101100&pin=&type=1&area=17_1381_50714_0&skuIds=J_100001550349%2CJ_100004323294%2CJ_100006635632%2CJ_100002749549%2C...原创 2019-08-18 17:24:00 · 269 阅读 · 0 评论 -
读写文件
读取文件#openfile_object=open('I:/python_file/python学习/pi.txt')#readcontents=file_object.read()print(contents)3.1415926535 8979328346 2643383279 #close 关闭文件file_object.close()#with close#文...原创 2019-08-09 09:24:22 · 156 阅读 · 0 评论 -
迭代器和生成器
迭代器和生成器#可迭代some_dict={'a':1,'b':2,'c':3}print(some_dict){'a': 1, 'b': 2, 'c': 3}for key in some_dict: print(key)abc'''迭代器1.iter(),创建迭代器2.next(),#调用迭代器,调出元素'''dict_iterator=iter(some...原创 2019-08-08 19:41:18 · 205 阅读 · 0 评论 -
import语句
import语句import mathmath.sqrt(4)2.0#from...import...从模块中导入指定的部分到当前命令空间中from math import sqrtsqrt(4)2.0#导入多个函数from math import sqrt,log10print(sqrt(4))print(log10(10))2.01.0#给math起个简短的名称...原创 2019-08-08 17:59:35 · 509 阅读 · 0 评论 -
异常处理-python
异常2/12.0var=float(input('请输入一个数字'))#input输入的是字符串print(1/var)print(2/1)请输入一个数字11.02.0var=float(input('请输入一个数字'))#input输入的是字符串print(1/var)print(2/1)请输入一个数字0--------------------------------...原创 2019-08-08 17:40:23 · 119 阅读 · 0 评论 -
函数1
函数#求绝对值print(abs(-2))#求最大值print(max(1.4,8,-2))28#调用math下函数import math #导入math包print(math.sqrt(16))print(math.ceil(3.2))#向上取正print(math.floor(3.2))#向下取正4.043#自定义函数#定义一个无参函数def sayHell...原创 2019-08-08 12:00:10 · 112 阅读 · 0 评论 -
学习笔记(01):Python数据分析与爬虫-基本的数据类型
原创 2019-08-07 16:30:19 · 147 阅读 · 0 评论 -
基本数据结构--字典和常用内置序列函数
字典#字典#创建一个字典,存储一个人的信息dict1={'name':'zhangsan','age':30,'city':'beijing'}print(dict1){'name': 'zhangsan', 'age': 30, 'city': 'beijing'}#t通过key获取某个元素的valueprint(dict1.get('age'))print(dict1.get...翻译 2019-08-08 10:46:37 · 219 阅读 · 0 评论 -
基本数据结构-元组和集和
元组¶#元组L1=(20,10,'abc','python')print(L1)(20, 10, 'abc', 'python')#通过索引获取元素print(L1[0])print(L1[1:3])20(10, 'abc')#元组的拼接t2=(50,'hadoop','spark')print(t2)print(L1+t2)(50, 'hadoop', 'spark...翻译 2019-08-08 10:03:40 · 144 阅读 · 0 评论 -
python基础学习
#!/usr/bin/env python# coding: utf-8# In[1]:1+1# In[3]:print('hello world')# In[5]:##基本的数据类型# In[98]:#字符串string1="Python"print(type(string1))'''这是多行注释'''string2='Python'...翻译 2019-08-08 09:42:34 · 217 阅读 · 0 评论 -
常见数据结构-列表
常见数据结构列表#列表L1=[10,20,'abc','python']print(L1)[10, 20, 'abc', 'python']#切片标记法print(L1[0])print(L1[1:3])#小于3print(L1[2])#负索引print(L1[-1])10[20, 'abc']abcpythonlen(L1)4L2=['hadoop','sp...翻译 2019-08-08 09:26:37 · 172 阅读 · 0 评论