已知有字符串st = "abcdef" ,写出下面语句的输出结果。print("st[0]=",st[0])
举一反三
- f(st): st[]=st={:,:} f(st) (st[],st[]) 结果是
- 已知st="Hello World!",使用print(st[0:-1])语句可以输出字符串变量st中的所有内容。
- 中国大学MOOC: 已知st=Hello World!,使用print(st[0:-1])语句可以输出字符串变量st中的所有内容。
- st = 'hello world'print(st[0],st[2],st[-1]) A: hll B: ell C: hld D: hed
- 已知st="Hello World!",使用print(st[0:-1])语句可以输出字符串变量st中的所有内容。 A: 正确 B: 错误