Files
freeCodeCamp/guide/arabic/python/containers/index.md
2018-10-16 21:32:40 +05:30

7 lines
1.0 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Python Containers
localeTitle: حاويات بايثون
---
تحتوي بعض الكائنات على مراجع للكائنات الأخرى ؛ هذه تسمى حاويات. أمثلة من الحاويات هي tuples والقوائم والقواميس. المراجع جزء من قيمة الحاوية. في معظم الحالات ، عندما نتحدث عن قيمة الحاوية ، فإننا نعني القيم ، وليس هويات الكائنات المتضمنة ؛ ومع ذلك ، عندما نتحدث عن تحور حاوية ، يتم فقط ضمّن هويات الكائنات الواردة مباشرةً. لذا ، إذا كانت الحاوية غير القابلة للتغيير (مثل المجموعة) تحتوي على مرجع إلى كائن قابل للتغيير ، تتغير قيمته إذا تم تغيير هذا الكائن القابل للتغيير.
[Python Docs - Object Values & Types](https://docs.python.org/3/reference/datamodel.html#objects-values-and-types)