240 发简信
IP属地:上海
  • 【python爬虫】 -第八天-函数

    def change(a): print(str(float(a)*0.001)+'kg') a=input('请输入数字:') change(3651) defname_h...

  • 【python爬虫】 -第七天 -文件读取

    1. fp =open(r'C:\Users\宇豪\Desktop\test.txt','a') fp.write('name,sex'+'\n'+'攀攀,男') fp.cl...

  • 【python爬虫】 -第六天

    # print(True and True) # # true # print(False and True) # # false # print(1 == 1 and 2 ...

  • 【python爬虫】 -第五天

    str1='http://www.jianshu.com/u/2cbfb62a28a8' str2=str1.split('/')[-1] print(str2) s ="a...

  • 【python爬虫】- json,dict

    importjson dict_a={} dict_b=dict() # dict_a['a1']='b1' # dict_a['a2']='b2' # dict_a['a3...

  • 【python爬虫】 -第四天

    一、 list1=['life','is','short'] list2=['you','need','python'] print(list2[2]) print(list...

  • 120