python3爬蟲會用到的各類存儲操做

爬蟲完之後,天然就要把結果保存下來。本文重點講解Python中通用的讀寫方法(通用的文件及數據庫操做): 1、TXT文本 一、讀入python import json path = r"\test.json" #打開方式:r\w\a\rb\wb\a+\ab with open(path, "r",encoding='utf-8') as file: r = file.read()
相關文章
相關標籤/搜索