执行下面代码:s = "Python"print(s[3:1:-1])输出结果为()
A: th
B: ht
C: oh
D: ho
A: th
B: ht
C: oh
D: ho
举一反三
- 执行下面代码:s = "Python"print(s[3:1:-1])输出结果为()
- 写出并理解下列语句输出的结果s="hello"print(s[0])print(s[4])print(s[-1])print(s[0:3])print(s[0:4:2])print(s[:])print(s[:3])print(s[::-1])print(s[1:])
- 已知s="Python语言程序设计",则 print(s[1:4])的输出结果为( ), print(s[-3:-2])的输出结果为( ), print(s[-4:2])的输出结果为( ). 3分
- 6. 运行下面的 PHP 代码,输出结果为 ____________ 。 $s = ’12345’; $s[$s[1]] = ’2’; echo $s;
- 下面叙述正确的是( )。知识点:集合 A: 以下代码的输出结果为8。s = {8,16,9,10,5}ls = list(s)ls.sort()print(ls[1]) B: 以下代码的输出结果为16。s = {8,16,9,10,5}print(s[1]) C: 以下代码的输出结果为5。s = {8,16,5,10,5}print(len(s)) D: 以下代码的输出结果为{5,8,9,10,16}。s = {8,16,9,10,5}s.sort()print(s)