-
单选题
读下面的Python程序,请在划线处将程序补充完整,使程序的输出结果是True。
a=5
b=8
if______:
print("True")
else:
print("False")
-
单选题
在Python中,运行下列程序,输出结果是______。
a="123"
b="456"
c=a+b
print("a+b的结果是:",c)
-
单选题
在Python中,运行下列程序,输入2,3之后运行结果______。
a=input()
b=input()
c=a+b
print(a,"+",b,"=",c)
-
单选题
在Python中,运行下列程序,输入7,3之后运行结果______。
a=int(input())
b=int(input())
c=a+b
print(a,"+",b,"=",c)
-
单选题
在Python中,运行下列程序,输入63之后运行结果______。
"
a=int(input())
if a>=60:
print(""合格"")
else:
print(""不合格"")"
-
单选题
在Python中,运行下列程序,从键盘接收的数据分别是10和20,输出结果是______。
a=input( )
b=input( )
print(a+b)
-
单选题
使用input()命令获取到的键盘输入数据类型为( )
-
单选题
利用for循环求:1+2+3+4……+100的和(用s表示和)。
s=0
for a in range( ) :
s=s+a
print(s)
-
单选题
在Python中,if结构被用在( )
-
单选题
运行如下程序代码:
a=input( )
b=input( )
print(a+b)
输入2和5输出结果为( )
-
单选题
在Python中输入以下程序:
if int(input( ))%5==0:
print("yes")
if int(input( ))%5!=0:
print("no")
如果输入7,则输出( )。
-
单选题
在Python中输入以下程序:
if int(input( ))%3==0:
print("yes")
if int(input( ))%3!=0:
print("no")
如果输入9,则输出( )。
-
单选题
运行如下程序代码:
a=int(input( ) )
b=int(input( ) )
print(a+b)
输入2和5输出结果为( )
-
单选题
在Python中输入以下程序:
a=input( )
b=input( )
c=a+b
print(c)
如果输入10和20,则输出( )。
-
单选题
在Python中,要想得到一个三位数的十位数字,下面哪行代码是正确的( )。
-
判断题
在Python中,运行下列程序,输出结果是2。
a=5
b=3
c=6
c=a%b
print(c)
-
判断题
在Python中,运行下列程序,输出结果是*****。
for i in range(1,6):
print("*",end="")
-
判断题
在Python程序中,下面的程序可以输出1-100之间的奇数(1 3 5……99)。
for i in range(1,101,2):
print(i,end=" ")
-
判断题
在Python程序中,下面的程序可以求1-100所有数的和。
he=0
for i in range(1,101):
he=he+i
print(he,end="")
-
判断题
在Python中,运行下列程序,从键盘接受的数据分别是5和10,输出的结果是50.0。
a=float(input( ))
b=float(input( ))
print(a*b)