[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fmbBa80l0IjJ5FgY_6Nr1TpPR0CMvwt018M0RvA9R20c":3},{"answer":4,"createTime":5,"id":6,"options":7,"origin":12,"question":16,"related":17,"source":27,"type":28},[],"2023-09-27 11:19:43",98491734,[8,9,10,11],"[3, 7, 8, 6, 1, 2] [3, 7, 8, [9, 10], 1, 2]","[3,[7,8],6,1,2] [3, 7, 8, 9, 10, 1, 2]","[3,4,6,7,8] [9,10,4,6,7,8]","Syntax error",{"courseId":13,"courseImg":14,"courseName":15},"faa2a6b8e8abfe8d32eb1ddbad9faa26","https:\u002F\u002Ftihai-oss-cloud.itihey.com\u002Fimg\u002F3d18244cebfc0039d964dc360a8b8ac8.jpg","Python程序设计（双语）","What will be the output of the following Python code? lst=[3,4,6,1,2] lst[1:2]=[7,8] print(lst) lst[3]=[9,10] print(lst)",[18,29,32,42,51,60,68,76,84,93],{"answer":19,"createTime":5,"id":20,"options":21,"question":26,"source":27,"type":28},[],98491732,[22,23,24,25],"['oh!', 'excellent!', '#450']","['good', 'oh', 'excellent', '450' ]","['good', '#450']","['good']","What will be the output of the following Python code? &gt;&gt;&gt; l=[&quot;good&quot;, &quot;oh!&quot;, &quot;excellent!&quot;, &quot;#450&quot;] &gt;&gt;&gt; [n for n in l if n.isalpha() or n.isdigit()]","v1",0,{"answer":30,"createTime":5,"id":6,"options":31,"question":16,"source":27,"type":28},[],[8,9,10,11],{"answer":33,"createTime":34,"id":35,"options":36,"question":41,"source":27,"type":28},[],"2023-09-27 11:19:44",98491735,[37,38,39,40],"[13, 56, 17, [87], 45, 67]","[13, 56, 17, [87], [45, 67]]","[13, 56, 17, 87, 45, 67]","[13, 56, 17, 87,[ 45, 67]]","What will be the output of the following Python code? a=[13,56,17] a.append([87]) a.extend([45,67]) print(a)",{"answer":43,"createTime":34,"id":44,"options":45,"question":50,"source":27,"type":28},[],98491736,[46,47,48,49],"['a#b#c#d']","['a b c d']","['a', 'b', 'c', 'd']","['abcd']","What will be the output of the following Python code? &gt;&gt;&gt;list(&quot;a#b#c#d&quot;.split('#'))",{"answer":52,"createTime":34,"id":53,"options":54,"question":59,"source":27,"type":28},[],98491737,[55,56,57,58],"[PUNE, 4, MUMBAI, 6, DELHI, 5]","['PUNE', 4, 'MUMBAI', 6,'DELHI', 5]","Error","[('PUNE', 4), ('MUMBAI', 6), ('DELHI', 5)]","What will be the output of the following Python code? &gt;&gt;&gt; s=[&quot;pune&quot;, &quot;mumbai&quot;, &quot;delhi&quot;] &gt;&gt;&gt; [(w.upper(), len(w)) for w in s]",{"answer":61,"createTime":34,"id":62,"options":63,"question":67,"source":27,"type":28},[],98491738,[64,57,65,66],"[1,2,3,4]","[[3],[7]]","[10]","What will be the output of the following Python code? lst=[[1,2],[3,4]] print(sum(lst,[]))",{"answer":69,"createTime":34,"id":70,"options":71,"question":75,"source":27,"type":28},[],98491739,[57,72,73,74],"[25, 14, 222, 33, 2]","[2, 33, 222, 14]","25","Suppose list1 is [2, 33, 222, 14, 25], What is list1[:-1]",{"answer":77,"createTime":34,"id":78,"options":79,"question":83,"source":27,"type":28},[],98491742,[80,81,11,82],"[1,2,3] [1,2,3,4]","[1, 2, 3, 4] None","[1,2,3,4] [1,2,3,4]","What will be the output of the following Python code? a=[1,2,3] b=a.append(4) print(a) print(b)",{"answer":85,"createTime":34,"id":86,"options":87,"question":92,"source":27,"type":28},[],98491745,[88,89,90,91],"Exception is thrown","0: One 1: Two 2: Three","One Two Three","1: 2: 3","What will be the output of the following Python code? num = ['One', 'Two', 'Three'] for i, x in enumerate(num): print('{}: {}'.format(i, x),end=&quot; &quot;)",{"answer":94,"createTime":34,"id":95,"options":96,"question":101,"source":27,"type":28},[],98491748,[97,98,99,100],"1","9","error","5","ls=[[1,2,3],[4,5,6],[7,8,9]], the value of ls[1][1] is"]