若k为整型,下列while循环执行的次数为()。k=100Owhile k >1:print(k)k = k//2
查看答案
以下叙述正确的是()。
A. continue语句的作用是结束整个循环的执行
B. 只能在循环体内使用break语句
C. 在循环体内使用break或continue语句的作用相同
D. 从多层循环嵌套中退岀是,只能用使用goto语句
已知name='###Marry###',如何删除字符串两段的#号()
A. print(name.lstrip('
B. '))
C. print(name.strip('
D. ))
E. print(name.rstrip('
F. '))
G. print(name.swapcase())
下列哪个函数可以实现字符串第一个字母大写,其它字母小写()
A. capitalize()
B. swapcasef)
C. title()
D. upper()
下列选项中,不能正确输出'hello!_sA_sB_sC'的是()。
A. print('hello{x}_s{y}_s{z}_s{r}'.format(x='!',y='A',z='B',r='C'))
B. print('hello{}_s{}_s{}_s{}'.format('!','A','B','C'))
C. print('hello{0}_s{2}_s{1}_s{3}'.format('!','A','B','C'))
D. print('hello{3}_s{0}_s{1 }_s{2}'.format('A','B','C','!'))