mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2025-12-15 13:44:39 +00:00
4 lines
207 B
Python
4 lines
207 B
Python
# 辅助函数:将UUID数组转换为字符串
|
||
def uuid_to_str(uuid_array) -> str:
|
||
"""将UUID字节数组转换为十六进制字符串"""
|
||
return "".join(format(byte, "02x") for byte in uuid_array) |