-
单选题
在Python中输入以下程序:
if int(input( ))%5==0:
print("yes")
if int(input( ))%5!=0:
print("no")
如果输入7,则输出( )。
-
单选题
运行如下程序代码:
a=int(input( ) )
b=int(input( ) )
print(a+b)
输入2和5输出结果为( )
-
单选题
在Python中输入以下程序:
a=input( )
b=input( )
c=a+b
print(c)
如果输入10和20,则输出( )。
-
单选题
a=10
b=5
c=7
if a>b and b>c:
print("yes")
else:
print("no")
运行的结果是?
-
单选题
python中, 用于表示不等于的关系运算符是( )
-
单选题
python赋值运算符就用中, a+=7 换算成a=的形式,应是( )
-
单选题
python数据数型转换中, 转换为整数的函数是( )
-
单选题
python中, input() 获取到的数据类型是( )
-
单选题
python中, 用于表示除法取商(取整数)的运算符是( )
-
单选题
python中, 幂运算符(次方运算)是( )
-
单选题
python中, 用来表示是否等于的关系运算符是( )
-
单选题
python中, 将 a**=2 转化成a=的形式,就是( )
-
单选题
python中, 将 a//=2 转化成a=的形式,就是( )
-
单选题
python中, 将 a-=2 转化成a=的形式,就是( )
-
单选题
python中, 将 a%=2 转化成a=的形式,就是( )
-
单选题
python中, 转换为字符串类型的函数是( )
-
单选题
python中, 转换为浮点数(带小数)类型的函数是( )
-
单选题
a=input()
a=a+1
print(a)
运行以上python程序, 并从键盘输入3 ,请判断运行的结果.
-
单选题
a=3
b=6
if a<2 or b>3:
print("yes")
else:
print("no")
运行以上python程序, 结果会是( )
-
单选题
a=234
b=234//23+234%19
if b >8 or a < 456 :
print("no")
else:
print("yes")
运行以上python程序, 结果会是( )