APP下载
首页
>
财会金融
>
宏观经济学选择题
搜索
宏观经济学选择题
题目内容
(
单选题
)
82. (单选题)以下条件选项中,合法且在if中判断是False的是( )

A、  24<=28&&28>25

B、  24<28>25

C、  35<=45<75

D、  24<=28<25

答案:D

宏观经济学选择题
33. (多选题)设置二行二列4个子图并在第3个区域绘制图形,以下语句正确的有:
https://www.shititong.cn/cha-kan/shiti/000dded1-b61d-f634-c01a-2cf5d6189000.html
点击查看题目
22. (多选题)ls = [25, 13, 36, 1]ls为一个列表,删除其中元素13,输出列表[25, 36, 1]的正确的选项有:
https://www.shititong.cn/cha-kan/shiti/000dded1-b61d-dea1-c01a-2cf5d6189000.html
点击查看题目
16. (多选题)在确定序列长度的情况下,可以用多变量赋值语句把元组、列表和字符串等序列解包,将元素分别赋值给多个独立变量,下面语句正确的有:
https://www.shititong.cn/cha-kan/shiti/000dded1-b61d-d11a-c01a-2cf5d6189000.html
点击查看题目
162. (判断题)列表可以作为字典的“键”
https://www.shititong.cn/cha-kan/shiti/000dded1-b61e-f938-c01a-2cf5d6189000.html
点击查看题目
179. (填空题)表达式[1, 2, 3]*3的执行结果为:
https://www.shititong.cn/cha-kan/shiti/000dded1-b61f-1a0f-c01a-2cf5d6189000.html
点击查看题目
176. (填空题)布尔类型的值包括True和( )。
https://www.shititong.cn/cha-kan/shiti/000dded1-b61f-13fc-c01a-2cf5d6189000.html
点击查看题目
93. (单选题)下列语句中,()在Python中是非法的。
https://www.shititong.cn/cha-kan/shiti/000dded1-b61e-71c1-c01a-2cf5d6189000.html
点击查看题目
161. (判断题)字符串属于Python有序序列,和列表、元组一样都支持双向索引。
https://www.shititong.cn/cha-kan/shiti/000dded1-b61e-f723-c01a-2cf5d6189000.html
点击查看题目
107. (单选题)以下代码的执行结果是()sum=0for i in range(100):if(i%10):continuesum = sum + iprint(sum)
https://www.shititong.cn/cha-kan/shiti/000dded1-b61e-8e7e-c01a-2cf5d6189000.html
点击查看题目
65. (单选题)以下哪个函数用于绘制柱形图()
https://www.shititong.cn/cha-kan/shiti/000dded1-b61e-395d-c01a-2cf5d6189000.html
点击查看题目
首页
>
财会金融
>
宏观经济学选择题
题目内容
(
单选题
)
手机预览
宏观经济学选择题

82. (单选题)以下条件选项中,合法且在if中判断是False的是( )

A、  24<=28&&28>25

B、  24<28>25

C、  35<=45<75

D、  24<=28<25

答案:D

分享
宏观经济学选择题
相关题目
33. (多选题)设置二行二列4个子图并在第3个区域绘制图形,以下语句正确的有:

A. plt.subplot(2, 2, 3)

B. plt.subplot(2, 2, 2)

C. plt.subplot(223)

D. plt.subplot(222)

https://www.shititong.cn/cha-kan/shiti/000dded1-b61d-f634-c01a-2cf5d6189000.html
点击查看答案
22. (多选题)ls = [25, 13, 36, 1]ls为一个列表,删除其中元素13,输出列表[25, 36, 1]的正确的选项有:

A. ls = [25, 13, 36, 1]ls.remove(13)print(ls)

B. ls = [25, 13, 36, 1]ls.pop(1)print(ls)

C. ls = [25, 13, 36, 1]ls.clear(13)print(ls)

D. ls = [25, 13, 36, 1]ls=[ls[0]]+ls[2:]print(ls)

https://www.shititong.cn/cha-kan/shiti/000dded1-b61d-dea1-c01a-2cf5d6189000.html
点击查看答案
16. (多选题)在确定序列长度的情况下,可以用多变量赋值语句把元组、列表和字符串等序列解包,将元素分别赋值给多个独立变量,下面语句正确的有:

A. x, y = 5, 10

B. x, y = (5, 10)

C. a, b, c = 'xyz'

D. x, y = [3, 6]

https://www.shititong.cn/cha-kan/shiti/000dded1-b61d-d11a-c01a-2cf5d6189000.html
点击查看答案
162. (判断题)列表可以作为字典的“键”

A.   对

B.   错

https://www.shititong.cn/cha-kan/shiti/000dded1-b61e-f938-c01a-2cf5d6189000.html
点击查看答案
179. (填空题)表达式[1, 2, 3]*3的执行结果为:
https://www.shititong.cn/cha-kan/shiti/000dded1-b61f-1a0f-c01a-2cf5d6189000.html
点击查看答案
176. (填空题)布尔类型的值包括True和( )。
https://www.shititong.cn/cha-kan/shiti/000dded1-b61f-13fc-c01a-2cf5d6189000.html
点击查看答案
93. (单选题)下列语句中,()在Python中是非法的。

A. x=y=z=1

B. x=(y=z+1)

C. x,y=y,x

D. x+=y

https://www.shititong.cn/cha-kan/shiti/000dded1-b61e-71c1-c01a-2cf5d6189000.html
点击查看答案
161. (判断题)字符串属于Python有序序列,和列表、元组一样都支持双向索引。

A.   对

B.   错

https://www.shititong.cn/cha-kan/shiti/000dded1-b61e-f723-c01a-2cf5d6189000.html
点击查看答案
107. (单选题)以下代码的执行结果是()sum=0for i in range(100):if(i%10):continuesum = sum + iprint(sum)

A.   5050

B.   4950

C.   450

D.   45

https://www.shititong.cn/cha-kan/shiti/000dded1-b61e-8e7e-c01a-2cf5d6189000.html
点击查看答案
65. (单选题)以下哪个函数用于绘制柱形图()

A. scatter()

B. plot()

C. bar()

D. pie()

https://www.shititong.cn/cha-kan/shiti/000dded1-b61e-395d-c01a-2cf5d6189000.html
点击查看答案
试题通小程序
试题通app下载