#やりたいこと
画像ファイルのbyte数を取得しようとしているのですが,エラーが出てしまい動きません.
凡ミスではない気がするのですが...
よろしくお願いします.
#サンプルコード
python:
1import sys 2 3image_name = "sample.jpg" 4 5f_image = open(image_name, "rb") 6image_data = f_image.read() 7sys.getsizeof(image_data) 8 9print(type(image_data))
#エラー
<class 'bytes'> sys.getsizeof(image_data) TypeError: expected bytes, int found
追記
OS:MacOS Mojave 10.14.6
Python: Python 3.7.2
回答1件
あなたの回答
tips
プレビュー