【Python爬虫作业】-第七次作业
2017-12-27 本文已影响93人
喜糖Amoon
一.格式化传参
1.定义一个字符串 base_url='http://www.python.com/?page={}'
2.请将数字1 格式化传递到base_url
代码:
base_url='http://www.python.com/?page={}'
base_url=base_url.format(1)
print(base_url)
输出结果:
http://www.python.com/?page=1
二.循环 格式化传参
1.定义一个变量list_a=range(1,10) #range函数以后会经常用到 大家百度用法
2.请对list_a进行 循环 打印它的每一个元素
3.请在上述循环里定义一个变量req_url,req_url的值应为list_a的每个元素格式化传参到base_url后的值 并打印输出req_url
代码:
list_a=range(1,10)
base_url='http://www.python.com/?page={}'
from collections import Iterable
print(isinstance(list_a,Iterable))
for i in list_a:
req_url=base_url.format(i)
print(i,req_url)
输出结果:
True
1 http://www.python.com/?page=1
2 http://www.python.com/?page=2
3 http://www.python.com/?page=3
4 http://www.python.com/?page=4
5 http://www.python.com/?page=5
6 http://www.python.com/?page=6
7 http://www.python.com/?page=7
8 http://www.python.com/?page=8
9 http://www.python.com/?page=9
三.字符串分割 列表索引
1.定义一个字符串 a='I like python'
2.请观察a的特点,对其进行分割 变量b存储分割后的值
3.对变量b进行循环并打印每个元素的值
4.循环打印b的每一个索引和索引对应的值
代码:
a='I like python'
b=a.split(' ')
print(b,type(b))
from collections import Iterable
print(isinstance(b,Iterable))
for i in b:
print(i)
for i in enumerate(b):
print(i)
for index,value in enumerate(b):
print(index,value)
输出结果:
['I', 'like', 'python'] <class 'list'>
True
I
like
python
(0, 'I')
(1, 'like')
(2, 'python')
0 I
1 like
2 python
四.索引切片
1.取出b当中的like,命名变量c
2.取出b当中的'th'命名变量d
3.取出b当中的python 命名变量e,并判断d是否存在e当中 存在输出'存在',不存在输出'不存在'
代码:
c=b[1]
print(c)
d=b[2][2:4]
print(d)
e=b[2]
print(e,type(e))
if d in e:
print('存在')
else:
print('不存在')
输出结果:
like
th
python <class 'str'>
存在
五.循环判断
1.使用startswith函数 判断e是否以d开头 条件为真输出'是',为假输出'不是'
代码:
a='I like python'
b=a.split(' ')
c=b[1]
d=b[2][2:4]
e=b[2]
if e.startswith(d):
print('是')
else:
print('不是')
输出结果:
不是
2.对list_a进行循环,并且判断如果list_a元素值<6,打印输出'<6',>=6 打印输出'>=6'
代码:
list_a=range(1,10)
for i in list_a:
if i<6:
print("<6")
else:
print(">=6")
输出结果:
<6
<6
<6
<6
<6
>=6
>=6
>=6
>=6
3.对list_a进行循环打印,如果元素值=6跳过循环
代码:
for i in list_a:
if i==6:
continue
else:
print(i)
输出结果:
1
2
3
4
5
7
8
9
4.对list_a进行循环打印,如果元素值>6 跳出循环
代码:
for i in list_a:
if i>6:
break
else:
print(i)
输出结果:
1
2
3
4
5
6
六.字典 json
1.定义空字典dict_a
2.利用循环将list_a的每个元素添加到dict_a
3.对dict_a进行循环 打印key和对应的value
4.讲dict_a转换为json格式
代码:
dict_a={}
list_a=range(1,10)
for i in list_a:
dict_a[i]=i
for k,v in dict_a.items():
print(k,v)
import json
json_c=json.dumps(dict_a)
print(json_c,type(json_c))
输出结果:
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
{"1": 1, "2": 2, "3": 3, "4": 4, "5": 5, "6": 6, "7": 7, "8": 8, "9": 9} <class 'str'>
七.循环嵌套
附加题:循环嵌套打印99乘法表
代码:
for i in range (1,10):
for j in range(1,10):
print(j,"x",i,"=",i*j,"\t",end="")
if i==j:
print("")
break
输出结果:
1 x 1 = 1
1 x 2 = 2 2 x 2 = 4
1 x 3 = 3 2 x 3 = 6 3 x 3 = 9
1 x 4 = 4 2 x 4 = 8 3 x 4 = 12 4 x 4 = 16
1 x 5 = 5 2 x 5 = 10 3 x 5 = 15 4 x 5 = 20 5 x 5 = 25
1 x 6 = 6 2 x 6 = 12 3 x 6 = 18 4 x 6 = 24 5 x 6 = 30 6 x 6 = 36
1 x 7 = 7 2 x 7 = 14 3 x 7 = 21 4 x 7 = 28 5 x 7 = 35 6 x 7 = 42 7 x 7 = 49
1 x 8 = 8 2 x 8 = 16 3 x 8 = 24 4 x 8 = 32 5 x 8 = 40 6 x 8 = 48 7 x 8 = 56 8 x 8 = 64
1 x 9 = 9 2 x 9 = 18 3 x 9 = 27 4 x 9 = 36 5 x 9 = 45 6 x 9 = 54 7 x 9 = 63 8 x 9 = 72 9 x 9 = 81