已知 x = '15' 和 y = '3',那么表达式 x + y 的值为______________。
A. ‘135’
B. ‘153’
C. 135
D. 153
使用()符号对字符串类型的数据进行格式化。
A. %c
B. %d
C. %f
D. %s
下列方法中,能够让整个字符串全部变成大写的方法是()。
A. capitalize
B. title
C. lower
D. upper
表达式'Helloworld'.lower()的值为____。
A. 'Helloworld'
B. 'HelloWorld'
C. 'HELLOWORLD'
D. 'helloworld'