【Python爬虫】第一周练习(二)

# -*- coding: utf-8 -*-

"""
第四次 字典 json类型 练习题
第五次 字符串分割、索引和切片练习题
第六次 逻辑运算练习题
"""

'''
第四次 字典 json类型 练习题
'''

# 导入Json
import json

# 定义一个空字典dict_a,空字典dict_b
dict_a = {}
dict_b = {}

# 给dict_a 添加3个key a1,a2,a3分别对应的值为b1,b2,b3
dict_a["a1"] = "b1"
dict_a["a2"] = "b2"
dict_a["a3"] = "b3"

# 获取dict_a所有的key,命名变量ks,打印输出ks及ks的数据类型
ks = dict_a.keys()
print("ks       ", ks)
print("type(ks) ", type(ks))

# 打印dict_a所有的value 命名变量vs,打印输出vs及vs的数据类型
vs = dict_a.values()
print("vs       ", vs)
print("type(vs) ", type(vs))

# 执行代码print(dict_a.items()) 观察输出结果
print(dict_a.items())

# 将a1和a3对应的值对换
temp = dict_a["a1"]
dict_a["a1"] = dict_a["a3"]
dict_a["a3"] = temp

# 打印输出dict_a
print(dict_a)

# 删除字典dict_a中a1对应的值
dict_a.pop("a1")

# 打印输出dict_a
print(dict_a)

# 将此时的dict_a数据更新到dict_b
dict_b.update(dict_a)

# 打印dict_b 并观察a1和a4是否在dict_b中
print(dict_b)

# a1如不存在dict_b中,输入以下代码 a1=dict_b.get('a1') 并打印变量a1
a1 = dict_b.get('a1')
print(a1)

# 将13题变量a1 添加到dict_b中,key为'a1'
dict_b["a1"] = a1

# a4如不存在dict_b中,将a4对应的值默认为'null',并添加到dict_b中,key为'a4'
a4 = 'null'
dict_b["a4"] = a4

# 打印dict_b及其数据类型
print(dict_b, type(dict_b))

# 将dict_b转化为json类型 命名为变量 json_c
json_c = json.dumps(dict_b)

# 打印json_c及其数据类型 观察16题打印结果和18题结果 将不同之处指明
print(json_c, type(json_c))

# 将json_c转换为字典类型 命名为dict_c 打印输出 dict_c及其数据类型
dict_c = json.loads(json_c)
print(dict_c, type(dict_c))

'''
第五次 字符串分割、索引和切片练习题
'''

# 理解索引这个会在之后经常用到
# 定义字符串、例如:str1 = 'http://www.jianshu.com/u/a987b338c373'字符串内容为自己的首页连接
str_1 = "https://www.jianshu.com/u/85c62640043d"

# 输出自己的简书id(u/之后的内容--a987b338c373)
print(str_1.split("u/")[1])

# 设s = "abcdefg", 则下列值为
# s[3]                s[2:4]
# s[:5]               s[3:]
# s[::-1]             s[::2]
s = "abcdefg"
print(s[3], "d")
print(s[2:4], "cd")
print(s[:5], "abcde")
print(s[3:], "defg")
print(s[::-1], "gfedcba")
print(s[::2], "aceg")

# 定义列表: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], 4)
print(list1[2:4], [3, 4])
print(list1[:5], [1, 2, 3, 4, 5])
print(list1[3:], [4, 5, 6, 7])
print(list1[::-1], [7, 6, 5, 4, 3, 2, 1])
print(list1[::2], [1, 3, 5, 7])

# 定义元组: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], 4)
print(touple1[2:4], (3, 4))
print(touple1[:5], (1, 2, 3, 4, 5))
print(touple1[3:], (4, 5, 6, 7))
print(touple1[::-1], (7, 6, 5, 4, 3, 2, 1))
print(touple1[::2], (1, 3, 5, 7))

# 对之前学习过得集中基本类型及其方法进行复习,重中之重理解索引和切片

'''
第六次 逻辑运算练习题
'''

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

推荐阅读更多精彩内容