[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fFM55UehaZp9y5ef2aXbLYYG64lB6PyO-1_Tkb-MTJOg":3},{"answer":4,"createTime":5,"id":6,"options":7,"origin":12,"question":16,"related":17,"source":28,"type":29},[],"2023-11-24 08:22:56",108035071,[8,9,10,11],"&gt;&gt;&gt; numbers[: -1] [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]","&gt;&gt;&gt; numbers[-2:] [9, 10]","&gt;&gt;&gt; numbers[0::3] [1, 3, 5, 7, 9]","&gt;&gt;&gt; numbers[0: 2] [1, 2, 3]",{"courseId":13,"courseImg":14,"courseName":15},"faa2a6b8e8abfe8d32eb1ddbad9faa26","https:\u002F\u002Ftihai-oss-cloud.itihey.com\u002Fimg\u002F3d18244cebfc0039d964dc360a8b8ac8.jpg","Python程序设计（双语）","numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], which output of the following choices is correct",[18,30,39,48,51,60,69,78,87,96],{"answer":19,"createTime":20,"id":21,"options":22,"question":27,"source":28,"type":29},[],"2023-11-24 08:22:55",108035063,[23,24,25,26],"[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)","v1",0,{"answer":31,"createTime":20,"id":32,"options":33,"question":38,"source":28,"type":29},[],108035067,[34,35,36,37],"['AC', 'AD', 'BC', 'BD']","ABCD","错误","AABBCCDD","The value of ls after the assign statement ls=[m+n for m in 'AB' for n in 'CD'] is",{"answer":40,"createTime":5,"id":41,"options":42,"question":47,"source":28,"type":29},[],108035069,[43,44,45,46],"['a#b#c#d']","['a b c d']","['abcd']","['a', 'b', 'c', 'd']","What will be the output of the following Python code? &gt;&gt;&gt;list(&quot;a#b#c#d&quot;.split('#'))",{"answer":49,"createTime":5,"id":6,"options":50,"question":16,"source":28,"type":29},[],[8,9,10,11],{"answer":52,"createTime":5,"id":53,"options":54,"question":59,"source":28,"type":29},[],108035073,[55,56,57,58],"ls.remove(1)","ls.pop(1)","ls = ls[1:]","del ls[0]","ls=[1,2,3,4,5],which of the following choices could NOT remove the first element from the list",{"answer":61,"createTime":5,"id":62,"options":63,"question":68,"source":28,"type":29},[],108035076,[64,65,66,67],"[('PUNE', 4), ('MUMBAI', 6), ('DELHI', 5)]","Error","['PUNE', 4, 'MUMBAI', 6,'DELHI', 5]","[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":70,"createTime":5,"id":71,"options":72,"question":77,"source":28,"type":29},[],108035078,[73,74,75,76],"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":79,"createTime":5,"id":80,"options":81,"question":86,"source":28,"type":29},[],108035082,[82,83,84,85],"error","no output","morning","hello","What will be the output of the following Python code snippet? ['hello', 'morning'][bool('')]",{"answer":88,"createTime":5,"id":89,"options":90,"question":95,"source":28,"type":29},[],108035085,[91,92,93,94],"['oh!', 'excellent!', '#450']","['good']","['good', '#450']","['good', 'oh', 'excellent', '450' ]","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()]",{"answer":97,"createTime":5,"id":98,"options":99,"question":104,"source":28,"type":29},[],108035090,[100,101,102,103],"['a', '@', 'b@c@d'] ['a', 'b', 'c', 'd']","['a', '@', 'b@c@d'] ['a', '@', 'b', '@', 'c', '@', 'd']","['a', 'b', 'c', 'd'] ['a', 'b', 'c', 'd']","['a', '@', 'b', '@', 'c', '@', 'd'] ['a', 'b', 'c', 'd']","What will be the output of the following Python code? s=&quot;a@b@c@d&quot; a=list(s.partition(&quot;@&quot;)) print(a) b=list(s.split(&quot;@&quot;)) print(b)"]