Golang基础笔记

前言 Go简介 Google开源 编译型语言 21世界的C语言 2005年出现多核处理器,其他语言都是单核时代诞生的。Go天生考虑了多核并发。 特点: 语...

pandas笔记

https://www.youtube.com/watch?v=yzIMircGU5I&list=PL5-da3qGB5ICCsgW1MxlZ0Hq8LL5U3u9y&index=1 read a tabular data file cols = ['col1', 'col2'] pd.read_table(path, sep='|', headers=None, names=cols) pd.head() # first five rows commands end with parentheses df.describe() #show mean, std, max, min... rename columns df.rename(columns = {'old_col_name':'new_col_name'}, inplace=True) cols = new_col_list df.columns = cols df.columns = df.columns.str.replace(' ', '_') remove columns df.drop('col', axis=1, inplace=True) df.drop([rows], axis=0, inplace=True) sort df['col'].sort_values(ascending=False) # series df.sort_values('col') # return dataframe df.sort_values(['col1', 'col2']) filter rows of a pandas DataFrame...

Python全栈学习笔记

课程介绍 阶段一:基础到高级 三个项目 ATM+购物车:面向过程 选课系统:面向对象 计算机病毒:程序、服务端、客户端 阶段二:商业项目 BBS 路飞学城 微信小...

正则表达式入门

参考:https://deerchao.cn/tutorials/regex/regex.htm 正则表达式是什么 正则表达式就是记录文本规则的...

OpenCV基础笔记

概述:OpenCV介绍与环境 OpenCV介绍 opencv计算机视觉开源库,算法涉及图像处理与机器学习。 Intel公司贡献,俄罗斯工程师贡献大...

Linux基础笔记

去年学习python基础课时包含的linux基础课程笔记 记得很简略基本上只有自己看得懂。。 一、操作系统与Linux 1. Operating System 1)操作硬件 2)将操...