As water gets colder, its temperature drops lower and lower, until it begins to freeze.
第1题:
The revision date of a chart is printed on which area of the chart?
A.Top center
B.Lower-left corner
C.Part of the chart title
D.Any clear area around the neat line
第2题:
4、已知a='pYthon',下面哪条语句可以令b为第一个字母大写的字符串'Python'。
A.b=a.lower()
B.b=a.upper()
C.b=a[0].upper()+a[1:].lower()
D.b=a[1].upper()+a[2:].lower()
第3题:
给出如下代码,可以输出"python"的是 s = 'Python is beautiful!'
A.print(s[0:7])
B.print(s[:-14])
C.print(s[-21:-14].lower)
D.print(s[0:6].lower())
第4题:
第5题:
已知a='pYthon',下面哪条语句可以令b为第一个字母大写的字符串'Python'。
A.b=a.lower()
B.b=a.upper()
C.b=a[0].upper()+a[1:].lower()
D.b=a[1].upper()+a[2:].lower()
第6题:
字符串的lower()方法,返回字符串的副本,全部为小写字符。