【python爬虫】第一周作业(续)_顾静

第四次作业

字典、 json类型 练习题

1.导入json模块
2.定义一个空字典dict_a,空字典dict_b
3.给dict_a 添加3个key a1,a2,a3分别对应的值为b1,b2,b3
4.获取dict_a所有的key,命名变量ks,打印输出ks及ks的数据类型
5.打印dict_a所有的value 命名变量vs,打印输出vs及vs的数据类型
6.执行代码print(dict_a.items()) 观察输出结果

import json
dict_a={}
dict_b={}
dict_a['a1']='b1'
dict_a['a2']='b2'
dict_a['a3']='b3'
ks=dict_a.keys()
print(ks)
print('type:',type(ks))
vs=dict_a.values()
print(vs)
print('type:',type(vs))
print(dict_a.items())

7.将a1和a3对应的值对换
8.打印输出dict_a
9.删除字典dict_a中a1对应的值
10.打印输出dict_a

a1_value=dict_a['a1']
dict_a['a1']=dict_a['a3']
dict_a['a3']=a1_value
print(dict_a)
dict_a.pop('a1')
print(dict_a)

11.将此时的dict_a数据更新到dict_b
12.打印dict_b 并观察a1和a4是否在dict_b中
13.a1如不存在dict_b中,输入以下代码 a1=dict_b.get('a1') 并打印变量a1
14.将13题变量a1 添加到dict_b中,key为'a1'
15.a4如不存在dict_b中,将a4对应的值默认为'null',并添加到dict_b中,key为'a4'

dict_b=dict_a
print(dict_b)
if not 'a1' in dict_b:
    a1 = dict_b.get('a1')
    print(a1)
dict_b['a1']='a1'
if not 'a4' in dict_b:
    dict_b.get('a4')
dict_b['a4']='a4

16.打印dict_b及其数据类型
17.将dict_b转化为json类型 命名为变量 json_c
18.打印json_c及其数据类型 观察16题打印结果和18题结果 将不同之处指明
19.将json_c转换为字典类型 命名为dict_c 打印输出 dict_c及其数据类型

print(dict_b,type(dict_b))
json_c=json.dumps(dict_b)
print(json_c,type(json_c))
dict_c=json.loads(json_c)
print(dict_c,type(dict_c))

第五次作业

字符串分割、索引和切片练习题

1.定义字符串(例如:str1 = 'http://www.jianshu.com/u/a987b338c373'),字符串内容为自己的首页连接,输出自己的简书id(u/之后的内容,例中为a987b338c373)

str1='https://www.jianshu.com/u/f46d8c326513'
pos=str1.find('/u/')
id=str1[pos+3:]
print(id)

2.设s = "abcdefg", 则下列值为
   s[3]    s[2:4]
   s[:5]    s[3:]
   s[::-1]  s[::2]

s = "abcdefg"
print(s[3])
print(s[2:4])
print(s[:5])
print(s[3:])
print(s[::-1])
print(s[::2])

3.定义列表:list1 = [1,2,3,4,5,6,7],则下列值为:
   list1[3]    list1[2:4]
   list1[:5]    list1[3:]
   list1[::-1]  list1[::2]

list1 = [1,2,3,4,5,6,7]
print(list1[3])
print(list1[2:4])
print(list1[:5])
print(list1[3:])
print(list1[::-1])
print(list1[::2])

4.定义元组:touple1 = (1,2,3,4,5,6,7),则下列值为
   touple1[3]    touple1[2:4]
   touple1[:5]    touple1[3:]
   touple1[::-1]  touple1[::2]

touple1 = (1,2,3,4,5,6,7)
print(touple1[3])
print(touple1[2:4])
print(touple1[:5])
print(touple1[3:])
print(touple1[::-1])
print(touple1[::2])

第六次作业

逻辑运算练习题

下列表达式逻辑运算后的结果为?
1.True and True
2.False and True
3.1 == 1 and 2 == 1
4."test" == "test"
5.1 == 1 or 2 != 1
6.True and 1 == 1
7.False and 0 != 0
8.True or 1 == 1
9."test" == "testing"
10.1 != 0 and 2 == 1
11."test" != "testing"
12."test" == 1
13.not (True and False)
14.not (1 == 1 and 0 != 1)
15.not (10 == 1 or 1000 == 1000)
16.not (1 != 10 or 3 == 4)
17.not ("testing" == "testing" and "Zed" == "Cool Guy")
18.1 == 1 and not ("testing" == 1 or 1 == 0)
19.3 == 3 and not ("testing" == "testing" or "Python" == "Fun")

print(True and True)
print(False and True)
print(1 == 1 and 2 == 1)
print("test" == "test")
print(1 == 1 or 2 != 1)
print(True and 1 == 1)
print(False and 0 != 0)
print(True or 1 == 1)
print("test" == "testing")
print(1 != 0 and 2 == 1)
print("test" != "testing")
print("test" == 1)
print(not (True and False))
print(not (1 == 1 and 0 != 1))
print(not (10 == 1 or 1000 == 1000))
print(not (1 != 10 or 3 == 4))
print(not ("testing" == "testing" and "Zed" == "Cool Guy"))
print(1 == 1 and not ("testing" == 1 or 1 == 0))
print(3 == 3 and not ("testing" == "testing" or "Python" == "Fun"))
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容