笔记
Python笔记day1
格式化输出信息,案例name=input('inputyourname:')age=int(input('inputyourage:'))job=input('inputyourjob')msg='''Infomationofuser%s:----------------------Name:%sAge:%sJob:%s----...[详细]
2020-02-23 08:13 分类:Python-
1-14 for循环及作业要求
1-14for循环及作业要求输出:Continue之后不会接着往下走,而是直接从for开始走。Continue跳出本次循环,继续到下次循环。Break是结束当前小循环内的整个循环。[详细]
2020-02-22 22:14 分类:Python 读书笔记 -《Advanced Programming in the UNIX Env》- (1)
1. Standards The proliferation of different versions of Unix during the 1980s has been tempered by the various international standards that were started during the late 1980s. These include the ANSI[详细]
2020-02-22 21:04 分类:Linux【机器学习】Matplotlib 快速入门笔记
Matplotlib 快速入门笔记Xu An 2018-4-7import matplotlib.pyplot as plt import numpy as np from mpl_toolkits.mplot3d import&nbs...[详细]
2020-02-21 17:48 分类:自动化python简单爬虫笔记
python模拟游览器爬取相关页面importurllib.requesturl="https://blog.51cto.com/itstyle/2146899"#模拟浏览器headers=("User-Agent","Mozilla/5.0(WindowsNT6.1;WOW64)AppleWebKit/537.36(KHTML,likeGecko)[详细]
2020-02-21 09:39 分类:Pythonlombok学习笔记
依赖包:<!--https://mvnrepository.com/artifact/org.projectlombok/lombok--><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>[详细]
2020-02-20 11:32 分类:编程语言【笔记】从技术角度思考Hadoop
学习笔记:王家林老师的hadoop课程 链接:http://edu.51cto.com/course/course_id-1151.htmlHadoop --- 适合海量数据的分布式存储与计算平台存储与计算平台:Hadoop是一个平台,在这个平台上可以实现存储与计算分布式:单虚拟机...[详细]
2020-02-12 19:09 分类:大数据