我试图通过在线课程学习在shell(jupyter notebook)/(anaconda提示符)中使用python中的元组。我被困在元组部分
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我试图通过在线课程学习在shell(jupyter notebook)/(anaconda提示符)中使用python中的元组。我被困在元组部分相关的知识,希望对你有一定的参考价值。
我的老师说元组是列表类型,它是不可变的。但我试过代码
>>>tuple1=[3,4,5,6]
>>>tuple1[1]=44
>>>tuple1
[3,44,5,6]
>>>list[3]=66
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'type' object does not support item assignment
>>> s=['hi','hello',33]
>>> list[1]='hitech'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'type' object does not support item assignment
这是输出。但我不知道为什么它没有显示
<Error>
答案
你的教师对于一个不可变的元组是正确的,但你的“元组”实际上是一个列表(带方括号)。
>>> tuple1 = [3, 4, 5, 6]
>>> type(tuple1)
<class 'list'>
>>> tuple1 = (3, 4, 5, 6)
>>> type(tuple1)
<class 'tuple'>
>>> tuple1[1] = 44
Traceback (most recent call last):
File "<input>", line 1, in <module>
TypeError: 'tuple' object does not support item assignment
另一个问题是你试图从内置的list
获取一个项目而不是一个真正的列表。
>>> my_list = [1, 2, 3, 4]
>>> my_list[3] = 66
>>> my_list
[1, 2, 3, 66]
>>> type(list)
<class 'type'>
>>> list[3]
Traceback (most recent call last):
File "<input>", line 1, in <module>
TypeError: 'type' object is not subscriptable
以上是关于我试图通过在线课程学习在shell(jupyter notebook)/(anaconda提示符)中使用python中的元组。我被困在元组部分的主要内容,如果未能解决你的问题,请参考以下文章
scikit 在 jupyter notebook 上学习 [关闭]
如何卸载 pip3 安装的 Jupyter notebook