以下选项,输出结果为False的是( )。
A: >>>’python123’> ‘python’
B: >>> ‘python’> ‘PYTHON’
C: >>> [1,2]<[2,2]
D: >>> {1,2}<{2,3,4}
A: >>>’python123’> ‘python’
B: >>> ‘python’> ‘PYTHON’
C: >>> [1,2]<[2,2]
D: >>> {1,2}<{2,3,4}
举一反三
- 以下程序的输出结果是: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' ]
- Python中,语句>>> {1, 2, 3} == {3, 2, 1},输出的结果为
- Python 3.x语句 print(1, 2, 3, sep=':') 的输出结果是:? 1 2 3|123|1,2,3|1:2:3
- 以下关于Python字典变量的定义中,正确的是( ) A: d = {[1,2]:1,[3,4]:3} B: d = {1:as,2:sf} C: d = {(1,2):1,(3,4):3} D: d = {‘python’:1,2:[tea,cat]}
- 2008年发布的python版本是() A: Python 1 B: Python 2 C: Python 3 D: Python 4