Python校统测A卷-客观题
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
一、选择题
- 在Python中,用于赋值的符号是( )。 {{ select(1) }}
- ==
- #
- =
- !=
- 下列不是Python中的数据类型的是( )。 {{ select(2) }}
- int
- float
- char
- str
- 用于输出数据到控制台的函数是( )。 {{ select(3) }}
- input( )
- print( )
- split( )
- type( )
- 下列哪个变量名符合Python变量的命名规范?( )。 {{ select(4) }}
- 3name
- class
- my_name
- else
- 表示布尔类型的选项是( )。 {{ select(5) }}
- bool
- True、False
- int
- float
- 字符串大致可以分为普通字符串、长字符串、原始字符串。下列关于字符串类型的描述,不正确的是( )。 {{ select(6) }}
- 通常来说,我们可以使用成对的单引号' '或双引号" "来表示字符串,比如:"hello"、'abc'。
- 使用三对单引号''' '''或双引号""" """来表示长字符,部分情况下也可以用来注释代码。
- 原始字符串需要使用r或R前缀,比如:r"https://qucode.cn/"
- print("\n")将会输出一个字母n
- 判断两个变量是否相等应该使用( )运算符。 {{ select(7) }}
- =
- ==
- !=
- >
- 下列关键字中,不是用于选择(分支)结构的是( )。 {{ select(8) }}
- if
- else
- elif
- while
- 下列哪个语句表示无限循环(死循环)?( )。 {{ select(9) }}
- for i in range(10):
- while True:
- if True:
- while False:
- 如果要从控制台输入两个数据,且这两个数据是以空格隔开的,那么可以使用代码( )。 {{ select(10) }}
- input( )
- input( ).split( )
- print( )
- int( input( ) )
- 想将字符串s转换为整数,可以使用( )。 {{ select(11) }}
- int(s)
- s(int)
- float(s)
- bool(s)
- 用于单行注释的符号是( )。 {{ select(12) }}
- =
- //
- ?
- #
- Python中用于获取变量或某个数据的数据类型的是( )。 {{ select(13) }}
- type( )
- int( )
- float( )
- str( )
- 不能正确输出“Hello, World!”的语句是( )。 {{ select(14) }}
- print('Hello, World!')
- print("Hello, World")
- print("Hello, Word!')
- print(r"Hello, World!")
- 下列代码的运行结果是( )。
print("01" * 5)
{{ select(15) }}
- 05
- 5
- 0101010101
- 015
二、判断题
- 表达式5/2+5%3的结果是整数4。( ) {{ select(16) }}
- √
- ×
- 在Python中if、else、while都可以用来作为变量名。( ) {{ select(17) }}
- √
- ×
18.下列程序的运行结果是 1。( )
x,y=1,2
x=y
y=x
print(y)
{{ select(18) }}
- √
- ×
- 下列代码执行后,输出结果是3.14。( )
pi = 3.14
print("%f" % (pi))
{{ select(19) }}
- √
- ×
- 代码x=input()运行后,在控制台输入12加回车键,则变量x的值是整数12。( ) {{ select(20) }}
- √
- ×
2024年12月校统测PythonA卷
- Status
- Done
- Rule
- OI
- Problem
- 3
- Start at
- 2024-12-22 10:30
- End at
- 2024-12-22 11:30
- Duration
- 1 hour(s)
- Host
- Partic.
- 9