5 lines
72 B
Python
5 lines
72 B
Python
|
import uuid
|
||
|
|
||
|
# 生成一个随机的UUID
|
||
|
guid = uuid.uuid4()
|
||
|
print(guid)
|