我正在尝试在 file.write 函数中使用 var 值:
profile = open("/tmp/%s.pcf", 'w+') % uid
我得到这个错误:
TypeError: unsupported operand type(s) for %: 'file' and 'str'
知道我做错了什么吗?
我正在尝试在 file.write 函数中使用 var 值:
profile = open("/tmp/%s.pcf", 'w+') % uid
我得到这个错误:
TypeError: unsupported operand type(s) for %: 'file' and 'str'
知道我做错了什么吗?