Python 语句 s=‘abcdefg,则s[::-1]的值是________________ 。
举一反三
- s=Python String,则s[1]的值为 。
- 设s = “abcdefg” , 则s[3:5]是________,s[::-1]是________
- 设s='abcdefg',则s[3]的值是__________,s[3:5]的值是__________,s[:5]的值是__________,s[3:]的值是__________,s[::2]的值是__________,s[::-1]的值是__________ ,s[-2:-5]的值是__________。
- 设有语句 s="Hello Python" 则可以取出“Python”字符串的是() A: s[-5,0] B: s[-6,0] C: s[-6,-1] D: s[-6:]
- Python语句 s={'a':1,'b':2},则 print(s['b']) 的输出结果是( ) 。