Get started learning Python with DataCamp's free Intro to Python tutorial. Learn Data Science by completing interactive coding challenges and watching videos by expert instructors. Start Now!
This site is generously supported by DataCamp. DataCamp offers online interactive Python Tutorials for Data Science. Join 11 million other learners and get started learning Python for data science today!
Good news! You can save 25% off your Datacamp annual subscription with the code LEARNPYTHON23ALE25 - Click here to redeem your discount
القواميس
A dictionary هو نوع بيانات مشابه للمصفوفات، ولكنه يعمل باستخدام المفاتيح والقيم بدلاً من الفهارس. يمكن الوصول إلى كل قيمة مخزنة في الـ dictionary باستخدام مفتاح، والذي يمكن أن يكون أي نوع من الكائنات (سلسلة نصية، رقم، قائمة، إلخ) بدلاً من استخدام فهرس للوصول إليها.
على سبيل المثال، يمكن تخزين قاعدة بيانات لأرقام الهواتف باستخدام dictionary كهذا:
phonebook = {}
phonebook["John"] = 938477566
phonebook["Jack"] = 938377264
phonebook["Jill"] = 947662781
print(phonebook)
بدلاً من ذلك، يمكن تهيئة dictionary بنفس القيم باستخدام الصياغة التالية:
phonebook = {
"John" : 938477566,
"Jack" : 938377264,
"Jill" : 947662781
}
print(phonebook)
Iterating over dictionaries
يمكن تكرار الـ dictionaries تمامًا مثل القوائم. ومع ذلك، الـ dictionary، على خلاف القائمة، لا يحتفظ بترتيب القيم المخزنة فيه. للقيام بتكرار أزواج المفتاح والقيمة، استخدم الصيغة التالية:
phonebook = {"John" : 938477566,"Jack" : 938377264,"Jill" : 947662781}
for name, number in phonebook.items():
print("Phone number of %s is %d" % (name, number))
Removing a value
لإزالة فهرس معين، استخدم واحدة من الصيغ التالية:
phonebook = {
"John" : 938477566,
"Jack" : 938377264,
"Jill" : 947662781
}
del phonebook["John"]
print(phonebook)
أو:
phonebook = {
"John" : 938477566,
"Jack" : 938377264,
"Jill" : 947662781
}
phonebook.pop("John")
print(phonebook)
Exercise
أضف "Jake" إلى دفتر الهاتف برقم الهاتف 938273443، وقم بإزالة Jill من دفتر الهاتف.
phonebook = {
"John" : 938477566,
"Jack" : 938377264,
"Jill" : 947662781
}
# your code goes here
# testing code
if "Jake" in phonebook:
print("Jake is listed in the phonebook.")
if "Jill" not in phonebook:
print("Jill is not listed in the phonebook.")
phonebook = {
"John" : 938477566,
"Jack" : 938377264,
"Jill" : 947662781
}
# your code goes here
phonebook["Jake"] = 938273443
del phonebook["Jill"]
# testing code
if "Jake" in phonebook:
print("Jake is listed in the phonebook.")
if "Jill" not in phonebook:
print("Jill is not listed in the phonebook.")
test_output_contains("Jake is listed in the phonebook.")
test_output_contains("Jill is not listed in the phonebook.")
success_msg("Nice work!")
This site is generously supported by DataCamp. DataCamp offers online interactive Python Tutorials for Data Science. Join over a million other learners and get started learning Python for data science today!