试题 试卷
题型:单选题 题类:模拟题 难易度:普通
浙教版(2020)2022初中信息技术模拟试卷3
i = 0
while i <10:
print("I love Python!")
i = i + 2
s=0
For i=5 to -3 step-6
s=s+i
Next i
n=0
for i in range(1,4):
n+=i
1)def factoria1(n): #求n!
2) s=1
3) for i in range(2,n+1)::
4) s=s*i
5) return s
6)print(factorial(4))
import math
for num in range(100,1000):
if num==pow(gw,3)+pow(sw,3)+pow(bw,3): #pow(x,y)函数返回xy的值
print(num)
上述程序段中加框处应该填入的代码段是( )
试题篮