Files
2026-07-13 12:31:34 +08:00

20 lines
303 B
Python

# -*- coding: utf-8 -*-
"""
@File : uuid_util.py
@Date : 2024-01-28
@Author : Peng Shiyu
"""
import uuid
def get_uuid():
"""
返回36位的uuid
:return: eg: 2817cac5-d65f-4fec-8e78-1bdaf55655e8
"""
return str(uuid.uuid4())
if __name__ == '__main__':
print(get_uuid())