由字符串 s = hello world 获得 Hello World 的方法为?
举一反三
- 中国大学MOOC: 由字符串 s = hello world 获得 Hello World 的方法为?
- 由字符串 s = 'hello world' 获得 'Hello World' 的方法为? A: s.title() B: s.capitalize() C: s.upper() D: s.isupper()
- 由字符串 s = 'hello world' 获得 'Hello World' 的方法为? A: s.title() B: s.capitalize() C: s.upper() D: s.isupper()
- 若字符串 s = 'hello world',则语句 s.ljust(15, '.') 和 s.rjust(15) 的输出结果为? A: '....hello world'' hello world' B: 'hello world....'' hello world' C: 'hello world....''hello world ' D: 'hello world....''hello world'
- 给定字符串s=hello world,获取hello的切片表达式为________。