下列说法不正确的是 ( )
>>> a=input("请输入一个整数:")
请输入一个整数:520
>>> print(a*2)
按下回车键后,输出结果是( )
info=[19,26,10,7,6,21,9,17,16]
x=max(info)
y=min(info)
z=len(info)
r=info[-5]
s=(x-y)%(z-r)
print(s)
运行程序后,输出的结果是( )
Importrandom
c=0
s=0
for i in range(0,10):
n=random.randint(1,101)
if n%2==0:
s+=i
c+=1
该程序段被执行后,下列说法不正确的是:( )
s=input("请输入字符串:")
count=0
for I in s:
if i>="0"and i<="9":
count=count+1
print(s[count:count+3])
若输入的字符串为"AB12CCC222GGBD",则程序运行结果为( )
sfz=input("请输入您的身份证号码:")
year=int(sfz[6:10])
month=
day=int(sfz[12:14])
print("您是的出生年月日是",year,"年",month,"月",day,"日!")
程序运行后,输入"33018320050907002X"后,输出的结果为:您是的出生年月日是2005年9月7日!,则空白处的代码为
importmath
total=float(input("请输入金额:"))
if total<=500:
total*=0.9
elif total<=1500:
total*=0.85
else
total*=0.75
print(math.floor(total))
运行程序,输入“1024”后回车,程序的输出结果是
a = [10, 5, 2, 11, 7,6]
i = 0
while i < len(a):
if a[i] % 2 == 0:
c -= a[i]
else:
c += a[i]
i =i + 1
print(c)
程序执行后,输出的结果是
程序段如下:
n =int(input("请输入年份:"))
k=0
while k<3:
if n%400==0 or():
k += 1
print(n)