刷题
导入试题
【判断题】
在Python 3.5中运算符+不仅可以实现数值的相加、字符串连接,还可以实现列表、元组的合并和集合的并集运算。
A. 对
B. 错
查看试卷,进入试卷练习
微信扫一扫,开始刷题
答案
B
解析
暂无解析
相关试题
【判断题】
已知x为非空列表,那么表达式 sorted(x, reverse=True) == list(reversed(x)) 的值一定是True。
A. 对
B. 错
【判断题】
已知x为非空列表,那么x.sort(reverse=True)和x.reverse()的作用是等价的。
A. 对
B. 错
【判断题】
生成器推导式比列表推导式具有更高的效率,推荐使用。
A. 对
B. 错
【判断题】
Python集合中的元素不允许重复。
A. 对
B. 错
【判断题】
Python集合可以包含相同的元素。
A. 对
B. 错
【判断题】
Python字典中的“键”不允许重复。
A. 对
B. 错
【判断题】
Python字典中的“值”不允许重复。
A. 对
B. 错
【判断题】
Python集合中的元素可以是元组。
A. 对
B. 错
【判断题】
Python集合中的元素可以是列表。
A. 对
B. 错
【判断题】
Python字典中的“键”可以是列表。
A. 对
B. 错
【判断题】
Python字典中的“键”可以是元组。
A. 对
B. 错
【判断题】
Python列表中所有元素必须为相同类型的数据。
A. 对
B. 错
【判断题】
Python列表、元组、字符串都属于有序序列。
A. 对
B. 错
【判断题】
在Python 3.x中语句 print(*[1,2,3]) 不能正确执行。
A. 对
B. 错
【判断题】
已知A和B是两个集合,并且表达式A < B的值为False,那么表达式A > B的值一定为True。
A. 对
B. 错
【判断题】
列表对象的append()方法属于原地操作,用于在列表尾部追加一个元素。
A. 对
B. 错
【判断题】
对于列表而言,在尾部追加元素比在中间位置插入元素速度更快一些,尤其是对于包含大量元素的列表。
A. 对
B. 错
【判断题】
假设有非空列表x,那么x.append(3)、x = x+[3]与x.insert(0,3)在执行时间上基本没有太大区别。
A. 对
B. 错
【判断题】
使用Python列表的方法insert()为列表插入元素时会改变列表中插入位置之后元素的索引。
A. 对
B. 错
【判断题】
假设x为列表对象,那么x.pop()和x.pop(-1)的作用是一样的。
A. 对
B. 错
【判断题】
使用del命令或者列表对象的remove()方法删除列表中元素时会影响列表中部分元素的索引。
A. 对
B. 错
【判断题】
带有else子句的循环如果因为执行了break语句而退出的话,则会执行else子句中的代码。
A. 对
B. 错
【判断题】
对于带有else子句的循环语句,如果是因为循环条件表达式不成立而自然结束循环,则执行else子句中的代码。
A. 对
B. 错
【判断题】
已知列表 x = [1, 2, 3],那么执行语句 x = 3 之后,变量x的地址不变。
A. 对
B. 错
【判断题】
在UTF-8编码中一个汉字需要占用3个字节。
A. 对
B. 错
【判断题】
在GBK和CP936编码中一个汉字需要2个字节。
A. 对
B. 错
【判断题】
如果仅仅是用于控制循环次数,那么使用for i in range(20)和for i in range(20, 40)的作用是等价的。
A. 对
B. 错
【判断题】
使用列表对象的remove()方法可以删除列表中首次出现的指定元素,如果列中不存在要删除的指定元素则抛出异常。
A. 对
B. 错
【判断题】
元组是不可变的,不支持列表对象的inset()、remove()等方法,也不支持del命令删除其中的元素,但可以使用del命令删除整个元组对象。
A. 对
B. 错
【判断题】
Python字典和集合属于无序序列。
A. 对
B. 错
【判断题】
无法删除集合中指定位置的元素,只能删除特定值的元素。
A. 对
B. 错
【判断题】
元组的访问速度比列表要快一些,如果定义了一系列常量值,并且主要用途仅仅是对其进行遍历二不需要进行任何修改,建议使用元组而不使用列表。
A. 对
B. 错
【判断题】
当以指定“键”为下标给字典对象赋值时,若该“键”存在则表示修改该“键”对应的“值”,若不存在则表示为字典对象添加一个新的“键-值对”。
A. 对
B. 错
【判断题】
假设x是含有5个元素的列表,那么切片操作x[10:]是无法执行的,会抛出异常。
A. 对
B. 错
【判断题】
只能对列表进行切片操作,不能对元组和字符串进行切片操作。
A. 对
B. 错
【判断题】
只能通过切片访问列表中的元素,不能使用切片修改列表中的元素。
A. 对
B. 错
【判断题】
只能通过切片访问元组中的元素,不能使用切片修改元组中的元素。
A. 对
B. 错
【判断题】
字符串属于Python有序序列,和列表、元组一样都支持双向索引。
A. 对
B. 错
【判断题】
Python字典和集合支持双向索引。
A. 对
B. 错
【判断题】
使用print()函数无法将信息写入文件。
A. 对
B. 错
推荐试题
【单选题】
The cupboard was ____ with old fishing tackle.
A. stuffed
B. stocked
C. stored
D. filled
【单选题】
The decision depended on the ____ of a coin.
A. loss
B. lot
C. toss
D. sign
【单选题】
Teaching can be a tiring and ____ job.
A. meaningless
B. stressed
C. rewarded
D. stressful
【单选题】
The building is partly a museum and partly a private ____.
A. place
B. area
C. community
D. residence
【单选题】
Stop ______ your foot.
A. tossing
B. wiggling
C. exhibiting
D. reviewing
【单选题】
It was a bloody ___ between the two armies.
A. rebellion
B. encounter
C. meet
D. fight
【单选题】
They conferred on the best way to ______ business.
A. extend
B. adjust
C. expand
D. adopt
【单选题】
We had a party last month, and it was a lot of fun, so let’s have ____ one this month.
A. another
B. the other B. more D. other
【单选题】
I decided to go to the library as soon as I ____.
A. finish what I did
B. finished what I did
C. would finish what I was doing
D. finished what I was doing
【单选题】
The speaker, ______ for her splendid speeches, was warmly received by the audience.
A. having known
B. being known
C. knowing
D. known
【单选题】
No sooner had we reached the top of the hill ______ we all sat down to rest.
A. when
B. then
C. than
D. until
【单选题】
___ energy under the earth must be released in one form or another, for example, an earthquake.
A. Accumulated
B. Gathered
C. Assembled
D. Collected
【单选题】
Please ___ me for my rudeness. I really do not know the custom here.
A. engaged
B. comfort
C. execute
D. forgive
【单选题】
Sometimes it is very difficult to ___ some of the English words. Even the native speaker cannot help.
A. decrease
B. create
C. define
D. delight
【单选题】
In the wife’s eyes, his ___ to their marriage life is far from perfect.
A. requirement
B. commitment
C. participation
D. reflection
【单选题】
This newspaper often ___ the government’s opinion, not the public opinion.
A. affects
B. reacts
C. reflects
D. recognizes
【单选题】
It is predicted that heavy rains are ___ to flood the area in a few days.
A. frightening
B. threatening
C. scattering
D. warning
【单选题】
I chose to work abroad to improve my career ___.
A. future
B. path
C. prospect
D. expect
【单选题】
Long before I ever went there, Africa was alive in my ___.
A. image
B. imaginary
C. imaginative
D. imagination
【单选题】
The spectacle of the aurora may appear to dazzle and ___ the observer’s eye.
A. enchant
B. charm
C. fascinate
D. draw
【单选题】
The top prize has enhanced the musician’s ___.
A. fame
B. status
C. courage
D. faith
【单选题】
Compared with Westerners, the ___ use less butter. They prefer the very healthful peanut oil.
A. foreigners
B. Southerners
C. Northerners
D. Orientals
【单选题】
Within a few days she had become seriously ill, ___ great pain and discomfort.
A. surviving
B. suffering
C. affecting
D. accepting
【单选题】
People of their generation who lived through World War II have ___ memories of confusion and incompetence.
A. vivid
B. strong
C. acute
D. profound
【单选题】
Not a breath of fresh air ___ the long white curtains.
A. blew
B. stirred
C. whirled
D. stung
【单选题】
Figures showed customer complaints had ___ to record levels and profits were falling.
A. added
B. climbed
C. accumulated
D. soared
【单选题】
Thanks for the advice, but this is something I have to ___ out myself.
A. fulfill
B. identify
C. figure
D. claim
【单选题】
A ___ monument has been erected in Tian An Men Square in honor of the people’s heroes.
A. magnificent
B. gorgeous
C. huge
D. marvelous
【单选题】
Vietnam made an official ___ that the meeting be postponed.
A. require
B. requirement
C. request
D. agreement
【单选题】
Luke was allowed to sit directly behind the pilot and ___ with him.
A. converse
B. inverse
C. perverse
D. diverse
【单选题】
Maybe this work is not ___, but it will live for a while.
A. mortal
B. deadly
C. immortal
D. worldly
【单选题】
This is why emerging economies set themselves to ___ vast foreign currency reserves in this decade.
A. gather
B. accumulate
C. accelerate
D. assemble
【单选题】
This will enable the audience to sit in ___ while watching the shows.
A. comfort
B. rest
C. relax
D. cozy
【单选题】
Throughout the house, the views are a constant source of surprise and ___.
A. grief
B. pleasant
C. happy
D. delight
【单选题】
Imagination is sometimes more ___ than reality.
A. vivid
B. real
C. bright
D. rich
【单选题】
It is but a step from the ___ to the ridiculous.
A. interest
B. top
C. bottom
D. sublime
【单选题】
My educational ___ is simple: learning should be fun.
A. philosophy
B. psychology
C. physiology
D. physics
【单选题】
I chose to work abroad to improve my career ___.
A. future
B. path
C. prospect
D. expect
【单选题】
Meg stared at her ___ in the bedroom mirror.
A. shadow
B. reflection
C. figure
D. shape
【单选题】
Such technology, however, remains firmly in the ___ of science fantasy.
A. realm
B. region
C. direction
D. district
欢迎使用我爱刷题
×
微信搜索我爱刷题小程序
温馨提示
×
请在电脑上登陆“www.woaishuati.com”使用