17 lines
307 B
Python
17 lines
307 B
Python
"""通用工具模块
|
||
|
||
提供项目可能用到的工具函数。
|
||
"""
|
||
|
||
def to_safe_str(value) -> str:
|
||
"""安全地将任意值转换为字符串
|
||
|
||
Args:
|
||
value: 任意值
|
||
|
||
Returns:
|
||
str: 字符串表示,None 将转换为 ""
|
||
"""
|
||
return "" if value is None else str(value)
|
||
|