判断题
在Python 3.x中,使用内置函数input()接收用户输入时,不论用户输入的什么格式,一律按字符串进行返回。
正确(↓↓↓ 点击‘点击查看答案’看答案解析 ↓↓↓)
判断题 如果只需要math模块中的sin()函数,建议使用from math import sin来导入,而不要使用import math导入整个模块。
判断题 在Python3.x中reduce()是内置函数。
判断题 Python变量名区分大小写,所以student和Student不是同一个变量。