|
更多答案:www.ybaotk.com
2021年秋季《Pyho编程技术(省)》任务021.[单选题] 下面代码的输出结果是x=10 y=4 print(x/y,x//y)
A.2 2.5 B.2.5 2.5
C.2.5 2
D.2 2
答:——C——
2.[单选题] 下面代码的输出结果是z = 12.34 + 34j print(z.imag) A.12.12
B.34
C.12
D.12.34
答:——B——
3.[单选题] 下面代码的输出结果是>>> True / False
A.True B.1
C.出错
D.FALSE
答:——C——
4.[单选题] 下面代码的输出结果是a = 5/3+5//3 print(a) A.5.4
B.2.66666666666666
C.3.333333 D.14
答:————
5.[单选题] #以下选项中,输出结果为False的是
A.>>> 'python' < 'pypi' B.>>> 'ABCD' == 'abcd'.upper()
C.>>> 'python123' > 'python'
D.>>> ''<'a' 答:————
6.[单选题] 下面代码的输出结果是a = 2 b = 2 c = 2.0 print(a == b, a is b, a is c)
A.True False False
B.True False True
C.False False True
D.True True False 答:————
7.[单选题] 下面代码的输出结果是str1 = "mysqlsqlserverPostgresQL" str2 = "sql" ncount = str1.count(str2) print(ncount)
A.2 B.5
C.4
D.3 答:————
8.[单选题] 给出如下代码 以下选项中描述正确的是for i in range(6): print(chr(ord(9801)+i),end="") A.chr ("a")返回"a"字符对应的Unicode编码
B.系统报错 C.输出结果为
D.ord(x)函数返回x的Unicode编码对应的字符
答:————9.[单选题] 下面代码的输出结果是x=10 y=–1+2j print(x+y)
A.(9+2j) B.11
C.2j D.9
答:————
10.[单选题] 关于Python的分支结构,以下选项中描述错误的是
A.Python中if-elif-else语句描述多分支结构 B.分支结构使用if保留字
C.Python中if-else语句用来形成二分支结构
D.分支结构可以向已经执行过的语句部分跳转
答:————
11.[单选题] 下面代码的输出结果是a ="Python" b = "A Superlanguage" print("{:->10}:{:-<19}".format(a,b)) A.----Python:A Superlanguage----
B.----Python:----A Superlanguage
C.The python language is a multimodel language.
D.Python----:----A Superlanguage
答:————
12.[单选题] 关于Python字符编码,以下选项中描述错误的是
A.ord(x)和chr(x)是一对函数
B.Python默认采用Unicode字符编码
C.chr(x)将字符转换为Unicode编码
D.Python可以处理任何字符编码文本
答:————
13.[单选题] 下面代码的输出结果是str1 = "mysqlsqlserverPostgresQL" str2 = "sql" ncount = str1.count(str2,10) print(ncount) A.0
B.3
C.4
D.2 答:————
14.[单选题] 下面代码的执行结果是a = 10.99 print(complex(a)) A.10.99
B.(10.99+0j)
C.10.99+0j D.0.99
答:————
15.[单选题] 下面代码的输出结果是 x=0x1010 print(x)
A.4112 B.520
C.10
D.1024 答:————
16.[单选题] 下面代码的输出结果是>>> True / False A.True
B.-1 C.0
D.系统报错 答:————
17.[单选题] 下面代码的输出结果是>>> True - False
A.1
B.-1
C.True D.0
答:————
18.[单选题] 下面代码的输出结果是x=0b1010 print(x) A.1024
B.10
C.16
D.256
答:————
19.[单选题] 下面代码的输出结果是>>> oct(–255) A.'0d–377'
B.'0o–377'
C.'–0d377'
D.'–0o377'
答:————
20.[单选题] 关于Python的数字类型,以下选项中描述错误的是 A.复数类型虚部为0时,表示为1+0j
B.1.0是浮点数,不是整数 C.浮点数也有十进制、二进制、八进制和十六进制等表示方式
D.整数类型的数值一定不会出现小数点 答:————
21.[单选题] 下面代码的输出结果是a = 20 b = a | 3 a &= 7 print(b ,end=",") print(a)
A.6.66667,4
B.4,6.66667
C.4,23
D.23,4 答:————
22.[单选题] 下面代码的输出结果是s = "The python language is a multimodel language." print(s.split(' '))
A.Thepythonlanguageisamultimodellanguage.
B.['The', 'python', 'language', 'is', 'a', 'multimodel', 'language.']
C.The python language is a multimodel language.
D.系统报错
答:————23.[单选题] 下面代码的输出结果是a = "alex" b = a.capitalize() print(a,end=",") print(b)
A.alex,ALEX B.ALEX,alex
C.alex,Alex
D.Alex,Alex 答:————
24.[单选题] 下面代码的输出结果是 x = 12.34 print(type(x))
A.<class 'float'>
B.<class 'complex'>
C.<class 'bool'>
D.<class 'int'>
答:————25.[单选题] 下面代码的输出结果是x=10 y=3 print(x%y,x**y)
A.1 1000
B.3 30
C.3 1000 D.1 30
答:————
更多答案:www.ybaotk.com
|
上一篇:贵州电大2021年秋季《Pyho编程技术(省)》任务01题目及答案非答案下一篇:贵州电大2021年秋季《Pyho编程技术(省)》任务03非答案
|