我有一本字典,里面装满了从 Excel 文件中读取数据的列表。所有文本都是 unicode 但我没有任何特殊字符。我正在尝试将位于列表中的数据写入 .txt 文件,但无法将列表打印出来。
target.write("move % to 100 100") % product[1][0]
target.write("\n move % to 200 100") % product[1][1]
target.write("\n connect % to %") % (product[1][0], product[1][1])
product 是包含多个列表的字典。有没有一种简单的方法来格式化我的 .write 语句,以便它可以接受 unicode。我得到的错误是
"Type Error: unsupported operand type(s) for %: 'Nonetype' and 'unicode'