3

http://grantcox.com.au/2012/01/decoding-b4u-binary-file-format/ Python コードを使用して .b4u ファイルを HTML 形式にエクスポートしようとしていますが、何らかの理由でプログラム ポイントの後に:

# find the initial caret position - this changes between files for some reason - search for the "Cards" string
for i in range(3):
    addr = 104 + i*4
    if ''.join(self.parser.read('sssss', addr)) == 'Cards':
        caret = addr + 32
        break
    if caret is None:
        return

次のエラーが表示されます。

if ''.join(self.parser.read('sssss', addr)) == 'Cards':
TypeError: sequence item 0: expected str instance, bytes found

私が使用している Python のバージョンは、Python 3.3.1 (v3.3.1:d9893d13c628、2013 年 4 月 6 日、20:25:12) です。

その問題を解決する方法はありますか?

4

1 に答える 1