fromlxmlimportetree importrequests file=open('xpath.html','r',encoding='utf-8') html=fi...
fromlxmlimportetree importrequests file=open('xpath.html','r',encoding='utf-8') html=fi...
# hw_13 #抓取网页数据 importrequests url ='http://www.ygdy8.com/' headers = { 'Accept':'text/...
1。对想要访问的网站的内容进行索引,然后把所访问的页面记录保存下来。主要是针对标准化的URL 进行信息索取。 2.对我们的作业所在的网页查看源代码.
直接上图, 感觉好蠢。。求更方便的办法。。 # 10.第十次 Python函数再练习 # 被2或者被3整除的正整数依次是:2,3,4,6,8,9,10,12,14,15,16...
# HW_10 defmain(num): a=1 b=0 while True: ifa%2==0ora%3==0: b=b+1 ifa == num: print('第'...
#1 g to kg convert def g_to_kg(g): print(str(float(g)*0.001)+ 'kg') g=input("请输入数字:") g...
#1创建txt 文件并写入相应的内容 import csv with open(r'C:\Users\haoran\Desktop\temp.txt','w',encodin...
# 一.格式化传参 # 1.定义一个字符串 base_url='http://www.python.com/?page={}' # 2.请将数字1 格式化传递到base_ur...
手残啦!
【Python爬虫】8.17课后作业#HW_6_logic True and True True 1==1and2==1 False "test"=="test True 1==1or2!=1 True Tru...
@程程同学 我在作业后面回复了带文字描述的结果。 如果有错误请帮忙指出。
【Python爬虫】8.17课后作业#HW_6_logic True and True True 1==1and2==1 False "test"=="test True 1==1or2!=1 True Tru...
#6
#两个True 还是TRUE
True and True
return trun
#1==1 是TRUE 2==1 是FALSE 中间是ABD 所以是false
1==1 and 2==1
False
#test == test 是true
"test"=="test
True
#1==1 true 2!=1 2不等于1是对的 中间是or所以TRUE
1==1 or 2!=1
True
#1==1 True, True也是True 中间是and 所以TRUE
True and 1==1
True
#0!=0 是true 但是前面是FALSE 中间是AND 所以是FALSE
False and 0!=0
False
#1==1 是TRUE 中间是 or所以是true
True or 1==1
True
#==前后的字符串并不想等所以FALSE
'test=='testing'
False
#1不等于0 是true, 但是2==1是FALSE 中间and所以是FALSE
1!=0 and 2==1
False
#==前后的字符串并不想等所以FALSE
"Test"="testing"
False
#字符串不等于后面的数字
'test'==1
False
#括号内true和FALSE结果是FALSE, not FALSE就是true
Not(True and False)
True
#括号内1==1true,0不等于1true, 括号内结果是true。 not true 就是FALSE
not (1==1 and 0!=1)
False
#括号内1000==1000是true,中间的OR虽然前面10==1是FALSE,但是括号内是true。 not true就是FALSE
not(10==1 or 1000==1000)
Flase
#括号内两个都是FALSE, not FALSE 就是true
not(1!=10 or 3==4)
True
#括号前面的是true, and 后面是FALSE。 所以括号内结果是FALSE, 前面的NOT 所以结果是true
not("testing"=="testing" and "Zed"=="cool Guy")
True
#括号内是FALSE,前面的NOT 导致 and 后面是true。 1==1 是true 所以结果是true
1==1 and not('testing==1 or 1==0)
True
#括号内一个true一个FALSE,中间是or所以是true。 not true 就是FALSE。 3==3 是true。 中间and, 所以结果是FALSE
3==3 and not('testing'=='testing' or 'python'=='Fun')
False
【Python爬虫】8.17课后作业#HW_6_logic True and True True 1==1and2==1 False "test"=="test True 1==1or2!=1 True Tru...
周末加上去。这两天上班忙,作业都是赶着上班前写的
【Python爬虫】8.17课后作业#HW_6_logic True and True True 1==1and2==1 False "test"=="test True 1==1or2!=1 True Tru...
@羽恒 谢谢!大家都一起加油
【Python爬虫】8.17课后作业#HW_6_logic True and True True 1==1and2==1 False "test"=="test True 1==1or2!=1 True Tru...
#HW_6_logic True and True True 1==1and2==1 False "test"=="test True 1==1or2!=1 True Tru...
#2 s1='http://www.jianshu.com/u/5b5a9a0eac12' s2=s1[-12::] print(s2) #3 s="abcdefg" pri...
#1 importjson #2 dict_a={} dict_b={} #3 dict_a['a1']='b1' dict_a['a2']='b2' dict_a['a3'...
Code #1定义列表 list1=['life','is','short'] list2=['you','need','python'] #1) index=list2.i...
#HW2 08-12-17 #Part1 a='I' b='like' c='python' print("'"+ a +' '+ b +' ' + c + "'") #Pa...