對於字典中不重要的信息,我們可以將它進行刪除,一般使用del語句,使用del語句時必須指定字典名和要刪除的鍵。
例如
alien_0={
'color':'green','points':5}
print(alien_0)
del alien_0['points']
print(alien_0)
代碼將鍵‘points’從字典在刪除,同時刪除與這個鍵相關聯的值,輸出後就是:
{
'color':'green','ponits':5}
{
'color':'green'}
如果我們調查的數量很多都要輸出到字典中,我們最好使他統一格式。當我們問不同的人喜歡的語言的時候結果會不同,所以數據量會很大。
favourite_language={
'jen':'python',
'sarah':'c',
'edward':'ruby',
'phil';:'python',
}
language=favourite_languages['sarah'].title()
print(f"sarah's favorite language is {
language}.")
Sarah'sfavorite language is c
這樣的格式非常方便簡潔,我們輸入了Sarah之後給出了他喜歡的語言。
如果我們所指定的鍵不存在,那麼就會出錯。
例如
alien_0={
'color':'green'}
print(alien_0['ponits'])
這樣就會顯示錯誤指出鍵值錯誤。
我們可以使用get()在指定的鍵不存在是返回一個默認的值。
例如
alien_0={
'color':'green'}
point=alien_0.get('points','no points')
print(ponit)
如果字典中有points的鍵那麼就會獲得相關的值,如果沒有,那麼就會獲得他默認的值,不會引發錯誤。
no points