在字符串"import"中,字符"p"对应的下标位置是()。
查看答案
有字符串变量a="orange",则a[4:5]表示的是()。
A. g
B. ge
C. e
D. ng
有字符串变量str="turtle",则print(str[:-1])表示的是()。
A. turtle
B. turtl
C. le
D. e
有字符串变量s="student",则s[::-2]表示的是()。
A. suet
B. tdn
C. teus
D. tn
upper("apPLe")
Apple
B. apple
C. apPLe
D. APPLE