雪峰python教程实战雪峰python教程课件ppt雪峰python教程 app
下载地址 https://share.weiyun.com/RS9A6Xk6
资料目录 廖雪峰python视频教程1 爬虫的基本框架及知识(day1-day15) 廖雪峰python视频教程2 scapy框架及爬虫进阶(day16-day20) 廖雪峰python视频教程3 爬虫高级知识及就业培训(day21-day28) 廖雪峰python教程官网doc 廖雪峰 2018年官方最新Python3教程(一)pdf 廖雪峰 2018官方Python3教程(二)pdf 廖雪峰2018官方Python3教程(三)pdf 廖雪峰python学习笔记(入门+进阶).doc Python3高级教程(开课吧)pdf Python3零基础教程(开课吧)pdf 利用Python进行数据分析(中文版)pdf 廖雪峰商业爬虫案例 廖雪峰商业爬虫课件 廖雪峰商业爬虫练习答案 爬虫第一节-爬虫第十四节 Python爬虫预习书籍 python环境和pychram 举例 Python 的三种控制流 与许多编程语言相同,在 Python 中程序通常是由上向下执行的,而有时我们为了改变程序的执行顺序,会使用控制流语句控制程序的执行方式。 在 Python 中有三种控制流类型:第 1 种是顺序结构,指按顺序执行的结构;第 2 种是分支结构,指选择执行的结构,常用的语句为 if;第 3 种是循环结构,指循环多次执行的结构,常用的语句为 for、while。下面分别通过代码实例认识这三种结构。 顺序结构的代码实例如下: In [44]: a=1 print a a=a-1 print a a=a+2 print a Out[44]: 1 0 2 分支结构的代码实例如下: In [45]: a=0 if a==1: print "She" else: print "He" Out[45]: He 循环结构 for 的代码实例如下: In [46]: for i in range(5): print "hello world" print i Out[46]: hello world 0 hello world 1 hello world 2 hello world 3 hello world 4 循环结构 while 的代码实例如下: In [47]: i=5 while i: print "hello world" print i i=i-1 Out[47]: hello world 5 hello world 4 hello world 3 hello world 2 hello world 1
|