python基本操作
字典
dict= {'語文': 89, '數學': 92, '英語': 93}
print(dict)
{'語文': 89, '數學': 92, '英語': 93}
dict = {}
print(dict)
{}
dict2 = {(20, 30):'good', 30:'bad'}
print(dict2)
{(20, 30): 'good', 30: 'bad'}
scores = {'語文': 89}
print(scores['語文'])
89
增加
scores['數學'] = 93
scores[92] = 5.7
print(scores)
{'語文': 89, '數學': 93, 92: 5.7}
刪除
del scores['語文']
del scores['數學']
print(scores)
{92: 5.7}
修改
dict={'語文':89,'數學':93,'英語':100}
dict['語文']=100
print(dict)
{'語文': 100, '數學': 93, '英語': 100}
查詢
scores = {'語文': 89}
print(scores['語文'])
89
元組
t1 = ([1,2,3],4)
print(t1)
([1, 2, 3], 4)
增加
t1 = ([1,2,3],4)
t1[0].append(4)
print(t1)
([1, 2, 3, 4], 4)
刪除
t2=(1,2,3,4)
del t2
查詢
t2=(1,2,3,4)
print(t2[1])
2
集合
a={1,2,3,4,5}
print(a)
{1, 2, 3, 4, 5}
增加
a.add(6)
print(a)
{1, 2, 3, 4, 5, 6}
a.update([7,9])
print(a)
{1, 2, 3, 4, 5, 6, 7, 9}
刪除
a.pop()
print(a)
{2, 3, 4, 5, 6, 7, 9}
a.remove(2)
print(a)
{3, 4, 5, 6, 7, 9}
相關文章
- python 使用csv的基本操作Python
- Python對excel的基本操作PythonExcel
- python字典基本認識和操作Python
- python3之os的基本操作Python
- Python-OpenCV —— 基本操作一網打盡PythonOpenCV
- Python3資料庫操作基本類Python資料庫
- python基本操作-檔案、目錄及路徑Python
- Python中集合的概念及基本操作詳解!Python
- python+資料庫(三)用python對資料庫基本操作Python資料庫
- python中字串基本操作以及三種位運算Python字串
- opencv-python簡易文件(一)圖片基本操作OpenCVPython
- MongoDB基本操作MongoDB
- webpack 基本操作Web
- mongo基本操作Go
- SQL基本操作SQL
- ElasticSearch - 基本操作Elasticsearch
- candance 基本操作
- svn基本操作
- oracle基本操作Oracle
- Hash基本操作
- FFMPEG基本操作
- dos 基本操作
- 基本操作題
- Laravel 基本操作Laravel
- Git基本操作Git
- VSCode基本操作VSCode
- Docker基本操作Docker
- redis基本操作Redis
- linux基本操作Linux
- ElasticSearch基本操作Elasticsearch
- HBase 基本操作
- Go 操作 Redis 的基本操作GoRedis
- 學習python視覺化,matplotlib庫學習,基本操作Python視覺化
- 資料結構:線性表(Python實現基本操作)資料結構Python
- 坐下坐下,基本操作(ZooKeeper 操作篇)
- Clion基本常用操作
- Redis管理基本操作Redis
- Git 常用基本操作Git