下面表达式求值分别是什么? ‘Hello’.upper() ‘Hello’.upper().isupper() ‘Hello’.upper().lower()
举一反三
- 表达式 'Hello'.upper() 的值为
- 表达式 'Hello world'.upper() 的值为_______
- 属于字符串方法的是() A: upper B: lower C: isupper D: islower
- For the two adjacent floors, call the upper layer ______ and the lower layer______ .
- 已知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()