tuple是含有10个元素的元组,下列说法不正确的是: A: 访问tuple元组可以这样:tuple[1] B: 访问tuple元组可以这样:tuple[:5] C: tuple[3] = “python” D: tuple = tuple[:5] + ("python",) + tuple[5:]
tuple是含有10个元素的元组,下列说法不正确的是: A: 访问tuple元组可以这样:tuple[1] B: 访问tuple元组可以这样:tuple[:5] C: tuple[3] = “python” D: tuple = tuple[:5] + ("python",) + tuple[5:]
“for” statement in Python can be used to iterate on any sequence, for example, list, string and tuple.
“for” statement in Python can be used to iterate on any sequence, for example, list, string and tuple.
以下操作不能创建元组的是()。 A: t=tuple(1,2,3) B: t=tuple([1,2,3]) C: t=tuple(range(5)) D: t=tuple(“right”)
以下操作不能创建元组的是()。 A: t=tuple(1,2,3) B: t=tuple([1,2,3]) C: t=tuple(range(5)) D: t=tuple(“right”)
tuple = (1, 2, 3, 4, 5) print(tuple[3]) tuple元组输出的结果为3。
tuple = (1, 2, 3, 4, 5) print(tuple[3]) tuple元组输出的结果为3。
Python中,对于定义的元组tuple = (1, 2, 3),以下各项操作能成功执行是()。 A: tuple[2]=4 B: tuple[0]=() C: tuple[0]=None D: tuple = (4, 5, 6)
Python中,对于定义的元组tuple = (1, 2, 3),以下各项操作能成功执行是()。 A: tuple[2]=4 B: tuple[0]=() C: tuple[0]=None D: tuple = (4, 5, 6)
“for” statement in Python can be used to iterate on any sequence, for example, list, string and tuple. A: 正确 B: 错误
“for” statement in Python can be used to iterate on any sequence, for example, list, string and tuple. A: 正确 B: 错误
有两个列表:list1=[(2),{0},(1),(8)],list2=[(2,),(0,),(1,),(8,)],那么type(list1[0])和type(list2[0])分别是( ) A: int和tuple B: int和int C: tuple和tuple D: tuple和int
有两个列表:list1=[(2),{0},(1),(8)],list2=[(2,),(0,),(1,),(8,)],那么type(list1[0])和type(list2[0])分别是( ) A: int和tuple B: int和int C: tuple和tuple D: tuple和int
tuple(range(2,10,2))的返回结果是
tuple(range(2,10,2))的返回结果是
元组tuple是属于可变对象。
元组tuple是属于可变对象。
20515.元组tuple是属于可变对象
20515.元组tuple是属于可变对象