我在使用Python中的uuid
生成unique id
時出現了一些錯誤。我正在解釋下面的錯誤。使用Python生成唯一標識時出錯
Error:
Exception Type: TypeError
Exception Value:
coercing to Unicode: need string or buffer, UUID found
我下面解釋我的代碼。
import uuid
filename='+uuid.uuid4()+'.csv'
在這裏,我需要把文件名稱作爲一些唯一的ID,但得到上述錯誤。請幫我解決這個錯誤。
這不是真正的代碼。 –
UUID具有多種表示形式。你想要哪一個? –
其實我需要保留一個唯一的ID作爲文件名。 – subhra