摘要: # -*- coding: utf-8 -*- class Animal: def eat(self): print('Animal is eating...')class Bird(Animal): def sing(self): print('Brids is singing...') def 阅读全文
posted @ 2020-07-19 15:02 IOstreamIO 阅读(143) 评论(0) 推荐(0)
摘要: # -*- coding : utf-8 -*-#@Time :2020/1/9 10:32#@Author :LIimport requestsimport jsonfrom lxml import etreedef getOnePage(n): url = f'https://maoyan.co 阅读全文
posted @ 2020-01-09 19:50 IOstreamIO 阅读(129) 评论(0) 推荐(0)