当前位置:首页
> Luz 第6528页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论单选题:Python语句print(0xA+0xB)的输出结果是 。
Python语句print(0xA+0xB)的输出结果是 。 @[C](2)A. 0xA+0xBB. A+BC. 21D. 0xA0xBA.0xA+0xBB.A+BC.21D.0xA0xB答案:C…
单选题:选择下面程序的运行结果
选择下面程序的运行结果@[C](2) x = 0 y = 10 if x ˃ 0 else -10 print(y)A. 0B. 10C. -10D. 20A.0B.10C.-10D.20答案:C…
单选题:选择下面程序的运行结果
选择下面程序的运行结果@[D](2) x,y,z=1,-1,1 if x ˃ 0: if y ˃ 0: print("x ˃ 0 and y ˃ 0") elif z ˃ 0:…
单选题:下列程序运行输出结果为__________。
下列程序运行输出结果为__________。@[A](4) words=['cat','window', 'defenestrate'] for w in words: if len(w)˃6:…
单选题:下列程序运行输出结果为_______。
下列程序运行输出结果为_______。 @[D](4) words=['cat','window', 'defenestrate'] for w in words[:]: if len(w)˃6:…
单选题:下列程序运行输出结果为_______。
下列程序运行输出结果为_______。@[B](2) def if_test(score): if(score˃=90): print('Excellent') elif(score˃=80):…
单选题:下列程序运行输出结果为_______。
下列程序运行输出结果为_______。@[D](2) m={1:'A','2':'B'} print(m.get(2,-1))A. 'B'B. 'A'C. NoneD. -1A.'B'B.'A'C.NoneD.-1答案:D…
单选题:Python中下面表达式结果为False的是______。
Python中下面表达式结果为False的是______。 @[D](2)A. 'abc'˃'ab'B. 'abc'˂'abcd'C. ''˂'a'D. 'He'˃'he'A.'abc'˃'ab'B.'abc'˂'abcd'C.''˂'…
单选题:下列数据类型中,Python不支持的是____________。
下列数据类型中,Python不支持的是____________。 @[A](2)A. charB. intC. floatD. listA.charB.intC.floatD.list答案:A…
单选题:Python的print(type(1//2))的输出结果是__。
Python的print(type(1//2))的输出结果是__。 @[A](2)A. <class 'int'>B. <class 'number'>C. <class 'float'>D. <…