DataFrame对象具有两个索引,分别是________ 和_________。
查看答案
执行如下代码的输出结果是( )。aStr ="hello world"print(aStr)
A. Hello world
B. hello world
C. "hello world"
D. aStr
需要在代码中引入circle包的area()函数,应该使用( )。
A. import circle and area
B. from circle import area
C. import circle's area
D. import area from circle
执行如下代码的输出结果是( )。A=[1,2,3,4]B=AA[1:3]=(8,9)print(”修改列表A的第2、3个元素的值。”)print(B)
A
B. [1,2,3,4]
C. B
D. [1,8,9,4]
执行如下代码的输出结果是( )。strFormat="姓名:%s\t年龄:%d岁\t性别:%s"print(srFormat %("保罗”,29,"男"))
A. 姓名:保罗 年龄:29岁 性别:男
B. 姓名:保罗t年龄:29岁t性别:男
C. 保罗 29 岁 男
D. 姓名:“保罗” 年龄:29 性别:“男”