<languages />
❮内置功能
将数字3.5转换为整数:
x = int(3.5)
The int() 函数将指定的值转换为整数。
int()
int(value, base)
将字符串转换为整数:
x = int("12")