精华Python小课 3天零基础入门
chenTJ1997
数据科学小学生
展开
-
精华Python小课 3天零基础入门(5)
精华Python小课 3天零基础入门——第六章笔记requests基本用法一些应对反爬机制的方法BeautifulSoup requests基本用法 一些应对反爬机制的方法 import requests url = "https://www.csdn.net/" header = {"user-agent":"Mozilla/5.0"} # 模仿浏览器 prox = {"http":"http://1.1.123.312"} # 模仿不同的端口 data = requests.get(url=url,原创 2021-06-21 23:23:19 · 74 阅读 · 0 评论 -
精华Python小课 3天零基础入门(4)
精华Python小课 3天零基础入门——第五章笔记Pandas数据的读取储存和索引Pandas数据预处理Pandas常用函数Matplotlib的常规用法 Pandas数据的读取储存和索引 import pandas as pd data = pd.DataFrame([1, 2, 3, 4], columns=["numbers"], index=["a", "b", "c", "d"]) # 生成一个dataframe Pandas数据预处理 Pandas常用函数 Matplotlib的常规原创 2021-06-21 22:44:51 · 88 阅读 · 0 评论 -
精华Python小课 3天零基础入门(3)
精华Python小课 3天零基础入门——第四章笔记Ndarray的生成和查看向量和矩阵的生成和numpy随机数矩阵的运算,形变和拼接向量和矩阵的索引Numpy科学计算方法作业 Ndarray的生成和查看 import numpy as np a = np.array([1, 2, 3, 4]) # 一维向量(4,) b = np.array([[1, 2, 3], [4, 5, 6]]) # 二维矩阵(2, 3) c = np.array([[1.2, 2.4], [3.4, 4.5]]) # 二维浮点原创 2021-06-21 22:02:10 · 211 阅读 · 0 评论 -
精华Python小课 3天零基础入门(2)
精华Python小课 3天零基础入门——第三章笔记函数文件IOtime与os模块异常处理作业 函数 def function_name(parameters): function_suite return expression a = 1 b = 2 # 两数相加 def sumoftwo(x, y): result = x + y return result print(sumoftwo(a, b)) # 两数比大小 def maxoftwo(x, y): i原创 2021-06-21 20:47:54 · 85 阅读 · 0 评论 -
精华Python小课 3天零基础入门(1)
精华Python小课 3天零基础入门——第二章笔记变量类型基础数学运算基础语法常用数据结构listtupledictset比较运算逻辑运算条件判断语句循环语句作业 变量类型 1、Int 2、float 3、string 基础数学运算 基础语法 1、Print和输出 2、行和缩进 3、多行语句 4、注释 常用数据结构 list l = [1, 2, 3, "Python"] # list的创建 len(l) # 查看list里的元素总数 l[0] = 2 # 修改指定位置元素的值 # l[0] = 1,l[原创 2021-06-20 22:58:02 · 154 阅读 · 0 评论