判断题:输入整数的做法
输入整数的做法
语句
a = int(input())
首先执行input函数调用,返回字符串,然后执行int函数调用,把数字字符串转换为整数,最后执行赋值操作,把整数赋值给变量a。
答案:TRUE
语句
a = int(input())
首先执行input函数调用,返回字符串,然后执行int函数调用,把数字字符串转换为整数,最后执行赋值操作,把整数赋值给变量a。
答案:TRUE