Heim > Artikel > Backend-Entwicklung > Was sind die Python-Codefragmente?
Python-Code-Snippet: 1. Anfragen zum Crawlen von Bildern; 2. uuid, der Code ist [von uuid import uuid4]; 3. Abrufen der CPU-Speichernutzung; 4. Wörterbuch zu json, der Code ist [print(json.dumps (DICT, ..)]
Python-Codesegment:
1, fordert Crawling-Bilder an
import requests url = 'https://www.baidu.com/img/bd_logo1.png' data = requests.get(url).content with open('baidu.png', 'wb') as fb: fb.write(data)
2, UUID
from uuid import uuid4 print(uuid4()) # 253b0bda-7f3e-4eeb-9116-b8b4865083b6
3, die Nutzungsrate CPU-Speicher erhalten
import psutil import os print(os.getpid()) print(psutil.virtual_memory().percent) print(psutil.cpu_percent(interval=1.0)) # 40462 # 67.2 # 7.1
4. Wörterbuch zu JSON (Lösen chinesischer verstümmelter Zeichen)
import json dict = { 'user': 'yubozhi', 'title': '硬盘不是“背锅侠', 'time': '2017-11-29' } print(json.dumps(dict, ensure_ascii=False)) # {"user": "yubozhi", "title": "硬盘不是“背锅侠", "time": "2017-11-29"}
Verwandte kostenlose Lernempfehlungen: Python-Video-Tutorial
Das obige ist der detaillierte Inhalt vonWas sind die Python-Codefragmente?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!