2016级3、4班计算机导论
2016-9-26 10:35
请先登录。
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1:# 2:缩进 3:B 4:C 5:26 6:输出四遍Hello 7:
i=5
while i<20
print(i*2)
i=i+1
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.# 2.缩进 3.B 4.C 5.33
6. Hello
Hello
Hello
Hello
7.
i=5
while i<20:
print(i*2)...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1、#
2、缩进程度
3、B
4、C
5、26
6、Hello
Hello
Hello
Hello
7、i=5
while5<= i<20:
...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.# 2.缩进 3.B 4.C 5.26 6.Hello Hello Hello Hello
7.
i=5
whilei<20
print(i*2)
...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1、#
2、缩进
3、B
4、C
5、26
6、Hello
Hello
Hello
Hello
7、
...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.#
2.缩进
3.B 4.D 5.26 6.Hello Hello Hello Hello Hello
7.i=5
while i<20
print(i*2)
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1:#
2:缩进
3:B
4:C
5:26
6:四个Hello
7:i=1
while i<20
print(i)
i=i*2
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.#
2.缩进
3.B
4.C
5.26
6.
Hello
Hello
Hello
Hello
7.
i=0
while i<15
print(10+i*2)
...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.# 2.缩进 3.B 4.C 5.26 6. 2345 Hello
7.
i=5
while i<20:
print(i*2)
...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1 # 2 缩进 3 b 4 c 5 26 6 hello hello hello hello
i=5
while i<20:
print(i*2)
i=i+1
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.# 2.缩进 3.B 4.C 5. 26 6. Hello Hello Hello Hello 7.i=5 while i<20 print(i) i=i*2
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
# 缩进 3 B 4C 5 。26
6 Hellow Hellow Hellow Hellow
7 i=5
while i<20
prin...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1. # 2.缩进 3.B 4.C 5.26
6.Hello Hello Hello Hello Hello
7.i=5
while i<20
print(i*2)
i=i+1
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.# 2.缩进 3.B 4.D 5.26 6.2345 7.i=5
while i<20
...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.# 2.缩进 3.B 4.C 5.26 6.Hello Hello Hello Hello 7.i=5 while i<20 print(i*2) i=i+1
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.#2.缩进量3.B4.D5.26 6.2 3 4 5 7.i=5
while i<20
...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1、# 2、相同的缩进 3、B 4、C 5、26
6、HelloHelloHelloHello
7、i=5
while i<20:
print(i)
i=i+1
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
# 开头空格数 B C
26 4个Hello
i=2
while i<20
print(i*2)
i=i+1 ...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.#
2.缩进
3.C
4.C
5.26
6.
Hello
Hello
Hello
Hello
7.
>>> i = 5
...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
# 缩进 B C 26 Hello Hello Hello Hello
i=5
while i<20:
print(i*2)
i=i+1
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
# 缩进长度 B C 26 Hello Hello Hello Hello
i=5
while i<20
print (i*2)
i=i+1
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
#
缩进
B
C
结果是30
输出4次“Hello”
i=5 ...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.# 2.缩进 3.B 4.C 5.26 6.hello hello hello hello
7.#<程序:while循环>
i=5
while i<20:
print(i*2)
i=i+1
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1. #
2. 缩进
3. B
4. D
5. 26
6. Hello
Hello
Hello
Hello
7. i = 5
while i < 20:
...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.# 2.缩进 3.B 4.C 5.26 6.hello hello hello hello 7.i=5
...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1、#
2、相同的缩进
3、B
4、C
5、K=26
6、Hello
Hello
Hello
Hello
7、i=5
while i<20:
...
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1 #
2. 相同空格数
3. B
4. C
5. 22.5
6. 2.3.4.5
7. i=5
while i<20
print(i)
i=i*2
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.#
2.缩进
3.B
4.C
5.26
6.Hello
Hello
Hello
Hello
7.
i=5
while i>=5 and i<20:
prin...
#2016级3、4班计算机导论# 的任务
任务4:Python(一)
有了新的提交。
1.Python使用符号#表示注释。#后面的内容不会执行
2.缩进
3.B
4.C
5.26
6.Hello Hell Hello Hello
7>>> i=5
>>> while i<...>
#2016级3、4班计算机导论# 的任务
任务4:Python(一) 有了新的提交。
<br>
1.#
2.运算符
3.B
4.C
5. 26
6.Hello
Hello
Hello
Hello
7.i=5
while i<20
print(i*2)...