解析:
内置的 int() 类型构造函数将字符串和浮点值转换为整数。
可以在 python在线工具 中尝试以下代码查验结果
#!/usr/bin/python print int(144) == 144 print int('144') == 144 print int(144.0) == 144