2016级7、8班计算机导论

2016-9-26 10:20
请先登录。
#2016级7、8班计算机导论# 的任务 任务5:Python(二) 有了新的提交。 <br> 1.   L==[1,1.3,"2","China",["I", "am", "another", "list" ], "Hello World!"]       1, 1.3, “2”, “China"       1, "2"       ["I"...
#2016级7、8班计算机导论# 的任务 任务5:Python(二) 有了新的提交。 <br> 1.L=[1,1.3,"2","china",["1","am","another","list"],"Hello World!"]    1,1.3,"2","china"    1,"2"    "Hello World",["1","am","a...
#2016级7、8班计算机导论# 的任务 任务5:Python(二) 有了新的提交。 <br> 1.(1)L=[1,1.3,"2","China",["I","am","another","list"],"Hello World!"]    (2)[1,["I","am","another","list"]](3)[1,["I","am","another","l...
#2016级7、8班计算机导论# 的任务 任务5:Python(二) 有了新的提交。 <br> 1.[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'][1, 1.3, '2', 'China'][1, '2'][][][['I', 'am', 'another', 'list...
#2016级7、8班计算机导论# 的任务 任务5:Python(二) 有了新的提交。 <br> 1、[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'] [1, 1.3, '2', 'China'] [] [] [['I', 'am', 'another...
#2016级7、8班计算机导论# 的任务 任务5:Python(二) 有了新的提交。 <br> 1[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'][1, 1.3, '2', 'China'][1, '2'][][][['I', 'am', 'another', 'list'...
#2016级7、8班计算机导论# 的任务 任务5:Python(二) 有了新的提交。 <br> 1.[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!']    [1, 1.3, '2', 'China'] [1, '2']      []    []     [['I', 'a...
#2016级7、8班计算机导论# 的任务 任务5:Python(二) 有了新的提交。 <br> 1.[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'] [1, 1.3, '2', 'China'] [1, '2'] [] [] [['I', 'a...
#2016级7、8班计算机导论# 的任务 任务5:Python(二) 有了新的提交。 <br> 1 、[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'][1, 1.3, '2', 'China'][1, '2'][][][['I', 'am', 'another', 'lis...
#2016级7、8班计算机导论# 的任务 任务5:Python(二) 有了新的提交。 <br> 1 L=[1,1.3,"2","China",["I","am","another","list"],"Hello world"]      1  1.3  "2"  "China"       1  "2"        ["I","am","another","li...
#2016级7、8班计算机导论# 的任务 任务5:Python(二) 有了新的提交。 <br> 1. [1,1.3,"2","China",["I","am","another","list"],"Hello World!"] [1,1.3,"2","China"] [1,"2"] [] [] [["I","am","anoth...
#2016级7、8班计算机导论# 的任务 任务5:Python(二) 有了新的提交。 <br> 1.(1) [1,1.3,"2","china",["I","am","another","list"],"Hello world! "] (2) [1,1.3,"2","china"] (3) [1,"2"] (4) [] (5) [-5] ...

#2016级7、8班计算机导论# 指派了新任务。 <br> 任务5:Python(二) <br> 熟读教材P126——P133页,熟练掌握列表的基本概念,通用操作和专有方法,和字符串的基本概念以及部分应用。 完成下列题目。 1、读程序写结果并用自己的语言总结列表相关知识。 L=[1,1.3,"2","China",["I","am","anothe...

#2016级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> 1.while,if,for 2.错 3.D 4.C 5.26 6.5个Hello 7.i=1 while i>33 print (i) i=i+1
#2016级7、8班计算机导论# 的任务 任务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)
#2016级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> 1.#  2.缩进  3.B  4.C  5.26  6.2  7.i=5   while i<20:         print(i)         i=i*2
#2016级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> # 缩进 B C 26 输出Hello4遍 i=5 while i<20:     print(i*2)     i=i+1
#2016级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> 1.# 2.开头的空格数 3.B 4.C 5.26 6.Hello   Hello   Hello    Hello 7. 10 12 14 16 18 20 22 2...
#2016级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> 第一题# 第二题。缩进 第三题B第四题C 第五题26 第六题hello 第七题 i=5 while i<20 print(i*2) i=i+1
#2016级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> 1.# 2.空格数 3.B 4.C 5.26 6.Hello    Hello    Hello 7.i=5    while i<20:            print(i*2)        ...
#2016级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> #  空格数  D  C  26  Hello HellO Heiio Hello   i=5 while i<20         print(i*2)         i=i+1
#2016级7、8班计算机导论# 的任务 任务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级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> 1、# 2、缩进 3、B 4、C 5、26 6、(1)Hello             Hello             Hello             Hello 7、i=5      while i...
#2016级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> 1.# 2.缩进空白 3.B 4.D 5.27.5 6.Hello    Hello    Hello    Hello 7.不会
#2016级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> 1.# 2.缩进 3.b 4.c 5.26 6.2345 7.i=5    while i<20        print(i*2)        i=i+1
#2016级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> 1,# 2,同列 3,D 4,C 5,26 6,Hello                                                    Hello                                           ...
#2016级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> 1.   # 2.   缩进 3.   B 4.   C 5.   26 6.   Hello        Hello       Hello       Hello 7.    i=5        whi...
#2016级7、8班计算机导论# 的任务 任务4:Python(一) 有了新的提交。 <br> #     缩进      B     C    26
#2016级7、8班计算机导论# 的任务 任务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)         ...