给出如下代码
s
= 'Python is beautiful!'
可以输出“python”的是
A: print(s[0:6])
B: print(s[0:6].lower())
C: print(s[–21:
–14].lower)
D: print(s[:–14])
s
= 'Python is beautiful!'
可以输出“python”的是
A: print(s[0:6])
B: print(s[0:6].lower())
C: print(s[–21:
–14].lower)
D: print(s[:–14])
举一反三
- 给出s='Python is beautiful!',可以输出“python”的是 A: print(s[:–14]) B: : print(s[0:6].lower()) C: print(s[0:6]) D: print(s[–21: –14].lower)
- 给出如下代码:s='Pythonisbeautiful!'可以输出“python”的是()。 A: print(s[0:6].lower()) B: print(s[0:6]) C: print(s[:–14]) D: print(s[–21:–14].lower)
- 给出s = 'Python is beautiful!' 下列选项中可以输出“python”的是 A: print(s[0:6]) B: print(s[0:6].lower()) C: print(s[–21: –14].lower) D: print(s[:–14])
- 若有定义s = 'Python is beautiful!' 则下列可以输出“python”的语句是___。() A: print(s[1:-14].lower()) B: print(s[0:6].lower) C: print(s[0:6]) D: print(s[-21:-14].lower())
- s=’Python is beautiful! ’, 可以输出“python”的是: A: print(s[0:7]) B: print(s[0:7].lower()) C: print(s[-21:-14].lower) D: print(s[:-14])