• 2022-07-23
    以下选项中描述错误的是()。
    A: 如果x是序列s的元素,x
    in s 返回True
    B: 如果m=[30,'hello
    python',45], m[3]返回45
    C: 如果m=[30,'hello
    python',45], m[0:2]返回[30,'hello
    python']
    D: 如果m=[30,'hello
    python',45], m[-1]返回45
  • 举一反三