把数字 3.5 转换为整数:
x = int(3.14)print(x)
x = int(3.14)
print(x)
int() 函数把指定值转换为整数。
int()
int(value, base)
把字符串转换为整数:
x = int("15")print(x)
x = int("15")