key=KEY_Scan(0);
OLED_Clear();
OLED_ShowString(j,i,"-->",12); // sign
OLED_ShowString(40,8,"task1",12); // the following are task1~3 on the left of oled.
OLED_ShowString(40,24,"task2",12);
OLED_ShowStri......
一、抓取豆瓣top250网页数据
import urllib.request as urlrequest
from bs4 import BeautifulSoup
top250_url = "https://movie.douban.com/top250?start={}&filter="
with open('./top250_f1.csv','w',encoding='utf8') as out...