当前位置:考试网  > 试卷库  > 计算机类  > 等级考试  > 计算机二级  > Python语言程序设计  >  以下程序的输出结果是: ss = set("htslbht") sorted(ss) for i in ss: print(i,end = '')
试题预览

以下程序的输出结果是:

ss = set("htslbht")

sorted(ss)

for i in ss:

print(i,end = '')

更新时间:2024-11-24 11:25:26
A、htslbht
B、hlbst
C、tsblh
D、hhlstt
收藏
纠错
正确答案:

B

答案解析:

暂无解析

你可能感兴趣的试题

以下程序的输出结果是:

deffun1(a,b,*args):

print(a)

print(b)

print(args)

fun1(1,2,3,4,5,6)

简述元组与列表的异同。并简述它们各自的用途。

算法的时间复杂度是指

以下程序的输出结果是:

s=0

deffun(num):

try:

s+=num

returns

except:

return0

return5

print(fun(2))

以下关于turtle库的描述,正确的是: