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資料分析庫pandas基本操作Python
- Python推特開發庫tweepy基本操作:Twitter for PythonPython
- Python3資料庫操作基本類Python資料庫
- Python-OpenCV —— 基本操作一網打盡PythonOpenCV
- Python-OpenCV 處理影象(一):基本操作PythonOpenCV
- python基本操作-檔案、目錄及路徑Python
- Python中集合的概念及基本操作詳解!Python
- webpack 基本操作Web
- Git基本操作Git
- Laravel 基本操作Laravel
- 基本操作題
- dos 基本操作
- MongoDB基本操作MongoDB
- Redis基本操作Redis
- mongo基本操作Go
- HBase 基本操作
- candance 基本操作
- Hash基本操作
- svn基本操作
- oracle基本操作Oracle
- ElasticSearch基本操作Elasticsearch
- FFMPEG基本操作
- Kafka基本操作Kafka
- SQL基本操作SQL
- Docker 基本操作Docker
- JXL基本操作
- Hive基本操作Hive
- git 基本操作Git
- 基本操作命令
- mysql基本操作MySql
- ElasticSearch - 基本操作Elasticsearch
- Docker基本操作Docker
- Go 操作 Redis 的基本操作GoRedis
- opencv-python簡易文件(一)圖片基本操作OpenCVPython