you should () your reasons for canceling your purchase order.
A、set forth
B、set up
C、set in
D、set out
第1题:
( ) – Is Miss White __________ English teacher, Maria?
– No, she teaches __________ geography.
A.your;my
B.you;mine
C.you;us
D.your;us
第2题:
52、set1 = {1, 2, 3} set2 = set1.copy() set3 =set1 set4=set(set1) 针对以上程序,当对set1进行修改时,以下说法正确的是()。
A.set2发生改变
B.set3发生改变
C.set4发生改变
D.set2 , set3和set4都发生改变
第3题:
17、set1 = {1, 2, 3} set2 = set1.copy() set3 =set1 set4=set(set1) 针对以上程序,当对set1进行修改时,以下说法正确的是()。
A.set2发生改变
B.set3发生改变
C.set4发生改变
D.set2 , set3和set4都发生改变
第4题:
10、已知 set1={0,1,2,3},set2={2,3,4,5}。则以下程序的功能,可以用表达式 set3 = set1 ___ set2实现。(在空格处填写合适的运算符) set3=set() for i in set1: if i in set2: set3.add(i) #集合的add方法表示在集合中添加一个元素
第5题:
已知 set1={0,1,2,3},set2={2,3,4,5}。则以下程序的功能,可以用表达式 set3 = set1 ___ set2实现。(在空格处选择合适的运算符) set3=set() for i in set1: if i in set2: set3.add(i) #集合的add方法表示在集合中添加一个元素
A.|
B.&
C.||
D.^
第6题:
已知 set1={0,1,2,3},set2={2,3,4,5}。则以下程序的功能,可以用表达式 set3 = set1 ___ set2实现。(在空格处填写合适的运算符) set3=set() for i in set1: if i in set2: set3.add(i) #集合的add方法表示在集合中添加一个元素