2016级7、8班计算机导论
2016-9-26 10:20
请先登录。
#2016级7、8班计算机导论# 的任务
任务6:Python(三) 有了新的提交。
1 [5,4,1,2,0] 2 L=[1,3,2,5,4] L.sort() print(L)
1 [5,4,1,2,0] 2 L=[1,3,2,5,4] L.sort() print(L)
#2016级7、8班计算机导论# 的任务
任务6:Python(三) 有了新的提交。
1:[5,4,1,2,0] 2:m=[3,5,4,8,9,1] s=sorted(m) print(s)
1:[5,4,1,2,0] 2:m=[3,5,4,8,9,1] s=sorted(m) print(s)
#2016级7、8班计算机导论# 的任务
任务6:Python(三) 有了新的提交。
1.[5, 4, 1, 2, 0] 2.def a(L1): L1.sort() L=[1,3,2,5,4] a(L) print(L)
1.[5, 4, 1, 2, 0] 2.def a(L1): L1.sort() L=[1,3,2,5,4] a(L) print(L)
#2016级7、8班计算机导论# 的任务
任务6:Python(三) 有了新的提交。
1[4,5,1,2,0] 2. def main(l): a=len(l)-2 b=0 while b<a: c=a ...
1[4,5,1,2,0] 2. def main(l): a=len(l)-2 b=0 while b<a: c=a ...
#2016级7、8班计算机导论# 的任务
任务6:Python(三) 有了新的提交。
1.ll=[0,1,2,4,5] 2. def mp(num): a=0 for i in range(0,len(num)): if num[i]>num[a]: a=i num[0],num[a]=num[a],num[0] s...
1.ll=[0,1,2,4,5] 2. def mp(num): a=0 for i in range(0,len(num)): if num[i]>num[a]: a=i num[0],num[a]=num[a],num[0] s...
#2016级7、8班计算机导论# 的任务
任务6:Python(三) 有了新的提交。
1.[5,4,1,2,0] 2.def a(L1): L1.sort()L=[1,3,2,5,4]a(L)print(L)
1.[5,4,1,2,0] 2.def a(L1): L1.sort()L=[1,3,2,5,4]a(L)print(L)
#2016级7、8班计算机导论# 的任务
任务6:Python(三) 有了新的提交。
1 4,5,1,2 2 def a(L): L=[] for x in range(0,len(L)): while L[0]>L[x]: ...
1 4,5,1,2 2 def a(L): L=[] for x in range(0,len(L)): while L[0]>L[x]: ...
#2016级7、8班计算机导论# 的任务
任务6:Python(三) 有了新的提交。
1 [4, 5, 1, 2, 0] 2
1 [4, 5, 1, 2, 0] 2
#2016级7、8班计算机导论# 的任务
任务6:Python(三) 有了新的提交。
1 11=[4,5,1,2,0] 2
1 11=[4,5,1,2,0] 2
给 #2016级7、8班计算机导论# 指派了新任务。
Python(三)
1、读程序写结果
2、假设一个列表中的元素都是整型值,现在请
设计一个函数实现将列表元素从小到大排序。例如:原列表为[1,3,5,2,4],调用函数之后列
表为[5,4,3,2,1]
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
1、[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'] [1, 1.3, '2', 'China'] [1, '2'] [] [] [...
1、[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'] [1, 1.3, '2', 'China'] [1, '2'] [] [] [...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
1.L.append("Hello World!") 向列表的末尾加上“Hello World” print(L) 输出该列表的内容L=[1,1.3,"2","China",["I","am","another","list"],“Hello World”] ...
1.L.append("Hello World!") 向列表的末尾加上“Hello World” print(L) 输出该列表的内容L=[1,1.3,"2","China",["I","am","another","list"],“Hello World”] ...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
1. [1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'][1, 1.3, '2', 'China'][1, '2'][][][['I', 'am', 'another', '...
1. [1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'][1, 1.3, '2', 'China'][1, '2'][][][['I', 'am', 'another', '...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World'][1, 1.3, '2', 'China'][1, '2'][][][['I', 'am', 'another', 'list'], '...
[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(二) 有了新的提交。
(2). L=['x','x','y','z'] L=list(set(L)) L.remove('x') print(L) L.insert(i,'x') print(L)
(2). L=['x','x','y','z'] L=list(set(L)) L.remove('x') print(L) L.insert(i,'x') print(L)
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
1. [1,1.3,"2","China",["I","am","another","list","Hello World!"]] [1,["I","am","another","list"]] [1,["I","am","another","list"...
1. [1,1.3,"2","China",["I","am","another","list","Hello World!"]] [1,["I","am","another","list"]] [1,["I","am","another","list"...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
(2)clear(x)while循环结束时,q指向第i个结点,那么 此时,p->next=q->next,这句,把q->next指向的第i+1个结点的地址给了新结点的next域 q->next=p,这句,把第i个结点的next域重新赋了值-为新结点p...
(2)clear(x)while循环结束时,q指向第i个结点,那么 此时,p->next=q->next,这句,把q->next指向的第i+1个结点的地址给了新结点的next域 q->next=p,这句,把第i个结点的next域重新赋了值-为新结点p...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
1、①[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'] ②[1, 1.3, '2', 'China']③[1, '2'] ④[] ⑤[]⑥[['I', 'am', 'another'...
1、①[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'] ②[1, 1.3, '2', 'China']③[1, '2'] ④[] ⑤[]⑥[['I', 'am', 'another'...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'] [1, 1.3, '2', 'China'] [1, '2'] [] [] [['I', 'am'...
[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'] [1, 1.3, '2', 'China'] [1, '2'] [] [] [['I', 'am'...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
1.[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'] [1, 1.3, '2', 'China'] [1, '2'] [] [] ...
1.[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'] [1, 1.3, '2', 'China'] [1, '2'] [] [] ...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
1. L=[1,1.3,"2","China",["I","am","another","list"],"Hello World!"] L=[1,1.3,"2","China"] L=[1."2"] L=[] L=[] L=[["I"...
1. L=[1,1.3,"2","China",["I","am","another","list"],"Hello World!"] L=[1,1.3,"2","China"] L=[1."2"] L=[] L=[] L=[["I"...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'][1, 1.3, '2', 'China'][1, '2'][][][['I', 'am', 'another', 'list'], ...
[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(二) 有了新的提交。
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
L=[1,1.3,"2","China",["I","am","another","list"],"Hello World!"] L=[1,1.3,"2","China"] L=[1,"2",["I","am","another","list"]] L...
L=[1,1.3,"2","China",["I","am","another","list"],"Hello World!"] L=[1,1.3,"2","China"] L=[1,"2",["I","am","another","list"]] L...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
1.[1,1.3,"2","China",["I","am","another","list"],"Hello World!"] [1,"2"] [] [] [["I","am","another","list"],"...
1.[1,1.3,"2","China",["I","am","another","list"],"Hello World!"] [1,"2"] [] [] [["I","am","another","list"],"...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
[1, 1.3, '2', 'China', ['I', 'am', 'another', 'list'], 'Hello World!'][1, 1.3, '2', 'China'][1, '2'][][][['I', 'am', 'another', 'list']...
[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(二) 有了新的提交。
1.(1)L=[1,1.3,"2","China",["I","am","another","list"],"Hello World!"] (2) L=[1,1.3,'2','China'] (3) L=[1,'2'] (4) L=[] (...
1.(1)L=[1,1.3,"2","China",["I","am","another","list"],"Hello World!"] (2) L=[1,1.3,'2','China'] (3) L=[1,'2'] (4) L=[] (...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
1.①[1,1.3,"2","China",["I","am","another","list"],"Hello World!"] ②[1,1.3,"2”,“China"] ③[1, "2"] ④[] ⑤[] ...
1.①[1,1.3,"2","China",["I","am","another","list"],"Hello World!"] ②[1,1.3,"2”,“China"] ③[1, "2"] ④[] ⑤[] ...
#2016级7、8班计算机导论# 的任务
任务5:Python(二) 有了新的提交。
1.(1)L=[1,1.3,"2","China",["I","am","another","list"],"Hello World!"] (2) L=[1,1.3,'2','China'] (3) L=[1,'2'] (4...
1.(1)L=[1,1.3,"2","China",["I","am","another","list"],"Hello World!"] (2) L=[1,1.3,'2','China'] (3) L=[1,'2'] (4...