A、have
B、are
C、is
D、will
第1题:
Python语句 print(type(1//2)的输出结果是:_____
A.< class 'int'>
B.< class 'number'>
C.<class 'float'>
D.<class 'double'>
第2题:
如果Number=3.5,请指出下列表达式的真假。 If Number = 3.5, point out the truth or false of the following expressions. floor(Number * Number) == Number * Number
第3题:
24、如果Number=7,下列命题为真。 If Number = 7, point out the truth or false of the following expressions. Sqrt(Number*Number ) == Int(Sqrt(Number*Number))
第4题:
如果Number=3,请指出下列语句的真与假。 If Number = 3, point out the truth and false of the following statements. Int(Number * Number) = Number * Number
第5题:
创建students对象,_______语句可以选出第二个同学的身高。 students数据如下: age height weight 1 19 170 68 2 20 165 65 3 18 175 65
A.students[1,'height']
B.students.loc[2,'height']
C.students.iloc[1, 1]
D.students['height'][3]
第6题:
创建students对象,_______语句可以选出第二个同学的身高。 students数据如下: age height weight 1 19 170 68 2 20 165 65 3 18 175 65
A.students.loc[2,'height']
B.students.iloc[1, 1]
C.students[1,'height']
D.students['height'][3]