Python 基礎 - Day 2 Learning Note - Dictionary 字典

來源:互聯網
上載者:User

標籤:alt   dict   learning   python   lte   nan   span   balance   嵌套   

 

Dictionary的運算式:{KEY: VALUE} 
  • value 可以是string, list, or disctionary.  層層嵌套,e.g 多層菜單
  • Dictionary的列印結果是無序的。因為可以通過key來尋找value內容,所有不用像list一樣,通過下標來尋找。
  • key必須是唯一的,天生去重複。
Dataset = {    ‘Equity Fund‘: ‘Deep value‘,    ‘Balanced Fund‘: ‘Market oriented with a growth bias‘,    ‘Fixed Income Fund‘: [‘Government bond‘,‘Financial Notes‘,‘Credit Bond‘,‘MBS‘],}
print(Dataset)

{‘Equity Fund‘: ‘Deep value‘, ‘Balanced Fund‘: ‘Market oriented with a growth bias‘, ‘Fixed Income Fund‘: [‘Government bond‘, ‘Financial Notes‘, ‘Credit Bond‘, ‘MBS‘]}

添加
Dataset["Alternative Investment"] = ‘REITS‘  # 添加Key
print(Dataset)

{‘Equity Fund‘: ‘Deep value‘, ‘Balanced Fund‘: ‘Market oriented with a growth bias‘, ‘Fixed Income Fund‘: [‘Government bond‘, ‘Financial Notes‘, ‘Credit Bond‘, ‘MBS‘], ‘Alternative Investment‘: ‘REITS‘}

修改
Dataset["Equity Fund"] = ‘Fundamental Growth‘
Dataset[‘Fixed Income Fund‘][1] = ‘MTN‘
print(Dataset)

{‘Equity Fund‘: ‘Fundamental Growth‘, ‘Balanced Fund‘: ‘Market oriented with a growth bias‘, ‘Fixed Income Fund‘: [‘Government bond‘, ‘MTN‘, ‘Credit Bond‘, ‘MBS‘], ‘Alternative Investment‘: ‘REITS‘}

刪除
del Dataset[‘Equity Fund‘]print(Dataset)

or 

Dataset.pop("Equity Fund") print(Dataset)

or 隨機刪除

Dataset.popitem()

 

尋找

 

Python 基礎 - Day 2 Learning Note - Dictionary 字典

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.