掌握Python网络爬虫技术思想
掌握Python数据分析知识
会使用爬虫框架Scarpy进行爬虫
你将收获
掌握Python网络爬虫技术思想
掌握Python数据分析知识
会使用爬虫框架Scarpy进行爬虫
适用人群
课程介绍
通过学习此课程,可以掌握Python的大数据分析。语法规则、常见通用库的使用,并在老师的带领下做出自己的智能语音机器人。在积累了一定的语言基础上具备成为专业Python工程师的能力。并可以深入全面学习Python爬虫及Flask的核心知识,包括常用网络库、分析库、Selenium、Scrapy等框架,Flask基础知识、Restful API、模板、表单等。
您观看课程学习后
免费入群领取【超全Python资料包+17本学习电子书】
课程目录
大家都在学
正在加载中...
同学笔记
2020-04-02 00:26:43
来源:Python数据分析第二节课之TXT文件操作2 查看详情
file = open('demo.txt','r') data = file.read() print(data) file.close() filex = open('demo.txt','r') data2 = filex.readlines() print("this is data2:") print(data2) file.close() file2 = open('demo2.txt','a',encoding='utf-8') file2.write('我爱python3!') file2.close() file3 = open('demo2.txt','r',encoding='utf-8') data3 = file3.read() print('this is data3:') print(data3) with open('demo.txt','r') as f: data4 = f.readlines() # f.close() print('This is data4:') print(data4) f.close() with open('demo.txt','r') as f2: data5 = f2.read() f2.close() print('this is data5:') print(data5)
没有更多了