对于以下程序的描述,正确的是( )。   8=”Python is good”   l=”isn’t it”   length=len(s)   s_title=s.title()   s_l=s+1   s_nunlber=

admin2022-09-09  33

问题 对于以下程序的描述,正确的是(          )。
   8=”Python is good”
   l=”isn’t it”
   length=len(s)
   s_title=s.title()
   s_l=s+1
   s_nunlber=s[1:6]
   print(length)

选项 A、length为12
B、s_title为“PYTHON IS GOOD”
C、s_l为“Python is good isn’t it”
D、s_number为“Python”

答案C

解析 len()函数用来获取字符串的长度,所以length应为14;title()函数是把字符串每个单词的首字母变为大写,所以s_title应为“Python Is Good”;索引的序号是从0开始的,所以s[1:6]应为“ython”,即s_number为“ython”。本题选择C选项。
转载请注明原文地址:https://kaotiyun.com/show/n76p777K
0

最新回复(0)