以下程序的输出结果是:Lis1 = [1,2,[‘python’]]Lis2 =[‘ loves ’]Lis1[ 1 ] = lis2print(lis1) }
A: [ lis2 ,2,[ 'python'] ]
B: [1,[ 'loves'], [ 'python'] ]
C: [1,2, ‘python' ,’loves' ]
D: [1 ,2,[ 'python' ,'loves' ]
A: [ lis2 ,2,[ 'python'] ]
B: [1,[ 'loves'], [ 'python'] ]
C: [1,2, ‘python' ,’loves' ]
D: [1 ,2,[ 'python' ,'loves' ]
举一反三
- 已知列表lst = [ 1, 2, 'Python',(2,3)], 则表达式lst[ -1 ][ -1 ]的值是: A: 1 B: 2 C: 'Python' D: 3
- 对于列表 L=[1,2,'Python',[1,2,3,4,5]],则 L[-3] 的结果是________。 A: 1 B: 2 C: 'Python' D: [1,2,3,4,5]
- 下列 Python语句的程序运行结果为list1=[1,2,3];list2=[3,4,5];dict1={'1':list1,'2':list2};dict2=dict1.copy()dict1['1'][0]=15; print(dict1['1'][0]+dict2['1'][0])
- 中国大学MOOC: 已知列表lst = [ 1, 2, Python,(2,3)], 则表达式lst[ -1 ][ -1 ]的值是:
- Python中,语句>>> [1, 2, 3] < [1, 2, 4] ,输出的结果为()。