JupyterのNewからPython3を選択
1 2 3 |
import zipfile with zipfile.ZipFile("スクレイピング.zip","r") as zip_ref: zip_ref.extractall("") |
JupyterのNewからPython3を選択
1 2 3 |
import zipfile with zipfile.ZipFile("スクレイピング.zip","r") as zip_ref: zip_ref.extractall("") |
UTF-8で書かれた文字列(ファイル)
1 2 |
私の名前は山田太郎です。 |
Shift JISでデコード
1 2 3 |
遘√�蜷榊燕縺ッ螻ア逕ー螟ェ驛弱〒縺吶 Big 5-Eは中国語繁体字に使われるエンコード形式 |
1 2 3 4 5 |
a = {"fruits": ["apple", "orange", "banana", "strawberry", "kiwifruit"], "year": [2001, 2002, 2001, 2008, 2006], "amount": [1, 4, 5, 6, 3]} print(a) |
{‘fruits’: [‘apple’, ‘orange’, ‘banana’, ‘strawberry’, ‘kiwifruit’], ‘year’: [2001, 2002, 2001, 2008, 2006], ‘amount’: [1, 4, 5, 6, 3]}
import csv
import time
from datetime import datetime
with open(‘csv0.csv’, ‘w’) as csvfile:
writer = csv.writer(csvfile, lineterminator=’\n’)
writer.writerow([‘2’, ‘3’, ‘5’])
writer.writerow([‘7′, ’11’, ’13’])
writer.writerow([datetime.now(),value])#関数、変数もカンマ区切りで入る
csv0.csvというファイルが同じディレクトリに生成される
find ./ -type f -print | xargs grep ‘キーワード’
辞書型は{key,value}