设str = '吵=口+少',输出结果为“吵口少”的print语句是:()
A: print('{}'.format(str[::2]))
B: print('{}'.format(str[::-1]))
C: print('{}'.format(str[::]))
D: print('{}'.format(str))
A: print('{}'.format(str[::2]))
B: print('{}'.format(str[::-1]))
C: print('{}'.format(str[::]))
D: print('{}'.format(str))
举一反三
- 设变量a=15.69458能够输出: RMB15.69 的是()。 A: print("RMB{:.2f}".format(a)) B: print("RMB"+str(a)) C: print("RMB",a) D: print("RMB{}".format(a))
- 设变量a=15.69458能够输出: RMB15.69 的是()。 A: print("RMB{:.2f}".format(a)) B: print("RMB"+str(a)) C: print("RMB",a) D: print("RMB{}".format(a))
- 先输入:str = 'python',然后想把字符串的第一个字母大写,其他字母还是小写并输出,正确的语句是( )( ) A: print(str[1].upper()+str[2:]) B: print(str[0].upper()+str[1:]) C: print(str[0].upper+str[1:]) D: print(str[0].upper()+str[1:-1])
- 设str=’python’,想把字符串的第一个字母大写,其他字母还是小写,正确的选项是()。 A: print(str[0].upper()+str[1:]) B: print(str[1].upper()+str[-1:1]) C: print(str[0].upper()+str[1:-1]) D: print(str[1].upper()+str[2:])
- 如果要绘制以下图形: * *** ***** ******* ********* *********** 下列( )选项可以完成该任务: A: for iline in range(7): print(f {'*'*(2*iline-1):^13} ) B: for iline in range(7): for j in range((13-2*iline+1)//2): print(" ",end="") for k in range(2*iline-1): print("*",end="") print() C: for iline in range(7): str = '*'*(2*iline-1) print(str.center(13)) D: for iline in range(7): str = '*'*(2*iline-1) print( {:^13} .format(str))