A: >>> 'abc'>'ab'
B: >>> chr(65).isnumeric()
C: >>> "Python".islower()
D: >>> chr(13).isprintable()
举一反三
- 下列选项中输出结果是True的是( )。 A: >>> chr(10).isnumeric() B: >>> chr(13).isprintable() C: >>> "Python".islower() D: >>> isinstance(255,int)
- 以下选项中,输出结果为False的是( )。 A: >>> 'python' < 'pypi' B: >>> 'ABCD' == 'abcd'.upper() C: >>> ''<'a' D: >>> 'python123' > 'python'
- 以下选项中,输出结果为False的是( ) A: >>> 'ABCD' == 'abcd'.upper() B: >>> ''<'a' C: >>> 'python123' > 'python' D: >>> 'python' < 'pypi'
- 以下选项中,输出结果为False的是()。 A: >>><br/>'python123' > 'python' B: >>><br/>'ABCD' == 'abcd'.upper() C: >>><br/>'' D: >>><br/>'python'
- 以下选项中,输出结果为True的是( )。 A: >>> 5 is 4 B: >>> 5 == 4 C: >>> 5 is not 4 D: >>> 3<=0
内容
- 0
以下选项中,输出结果为False的是() A: >>><br/>'python123' > 'python' B: >>><br/>'python' < 'pypi' C: >>><br/>'''' >><br/>'ABCD' == 'abcd'.upper()
- 1
以下选项中,输出结果为False的是( )。 A: >>>5 != 4 B: >>>5 is 5 C: >>>5 is not 4 D: >>>False !=0
- 2
以下选项中,( )的输出结果为False。 A: >>> 5 is not 4 B: >>> 5 != 4 C: >>> False != 0 D: >>> 5 is 5
- 3
以下选项中,输出结果为False的是()。 A: >>>5 is 5 B: >>>5 i =4 C: >>>5 is not 4 D: >>>False i=0
- 4
以下对于字符串的相关操作,正确的输出结果是哪些选项? A: >>> 'Life is short, you need Python.'.find('you') 15 B: >>> seq = [1, 2, 3, 4]; >>> sep = '+'; >>> sep.join(seq) '1+2+3+4' C: >>> print('{:5.3f}'.format(math.pi)) 3.1416 D: >>> print('you' in 'Life is short, you need Python.') True