目的
從網站上爬蟲資料,如果資料量大就不適合直接寫在同一個檔案上,所以必須使用讀取記事本文件、josn、SQLsite來讀取或寫入資料。
建立記事本為txt.txt,內容為list資料。
['https://i.imgur.com/yCRKRrW.jpg', 'https://i.imgur.com/Wi2ZpI0.jpg', 'https://i.imgur.com/0o3RywQ.jpg', 'https://i.imgur.com/J32O3Y6.jpg', 'https://i.imgur.com/3uYICfO.jpg', 'https://i.imgur.com/NtzTFsY.jpg', 'https://i.imgur.com/1gZmY1u.jpg', 'https://i.imgur.com/tJM6E1b.jpg', 'https://i.imgur.com/OJjyDbs.jpg', 'https://i.imgur.com/xV1SDLT.jpg', 'https://i.imgur.com/gxsGgpg.jpg', 'https://i.imgur.com/YrZbHmU.jpg']
file = 'txt.txt'
with open(file, 'r') as f: #開啟檔案
a = f.read() #讀取顯示資料
urlList = ast.literal_eval(a) #轉換資料
print(urlList[0]) #顯示第一張圖片網址
運用ast.literal_eval()轉換為Python讀取懂的資料,可使用的格式,數值,元組,list,字典,集合,布爾值和 None
。