📋 المحتوى المنظم
📖 محتوى تعليمي مفصّل
نوع: محتوى تعليمي
يمثل الرسم البياني أدناه بعض نماذج المكتبة القياسية (Standard Library) وبعض دوالها.
المكتبات بايثون الأخرى
نوع: محتوى تعليمي
لا يقتصر الأمر على المكتبة القياسية المثبتة في بايثون، بل يمكن بسهولة تنزيل مكتبات إضافية وتثبيتها لإضافة دوال أخرى قد تحتاجها في برامج أخرى. تأتي معظم المكتبات الإضافية بأدوات التثبيت الخاصة بها أو ببرنامج التثبيت النصي الخاص بها. بمجرد تثبيت المكتبات الإضافية، فإنها تتصرف مثل مكتبة بايثون القياسية، ولا توجد أوامر خاصة تحتاج إلى معرفتها. ستتعرف أكثر على المكتبات القياسية.
نوع: محتوى تعليمي
المكتبة القياسية
(Standard Library)
نوع: محتوى تعليمي
النموذج البرمجي (Module)
نوع: محتوى تعليمي
الدالة
(Function)
نوع: محتوى تعليمي
...
نوع: محتوى تعليمي
datetime
نوع: محتوى تعليمي
queue
نوع: محتوى تعليمي
math
نوع: محتوى تعليمي
datetime.date.today()
نوع: محتوى تعليمي
datetime.time()
نوع: محتوى تعليمي
...
نوع: محتوى تعليمي
queue.put()
نوع: محتوى تعليمي
queue.full()
نوع: محتوى تعليمي
queue.empty()
نوع: محتوى تعليمي
...
نوع: محتوى تعليمي
math.pi()
نوع: محتوى تعليمي
math.sin()
نوع: محتوى تعليمي
math.log()
نوع: محتوى تعليمي
math.pow()
نوع: محتوى تعليمي
...
نوع: METADATA
وزارة التعليم
Ministry of Education
2025 - 1447
نوع: METADATA
151
🔍 عناصر مرئية
المكتبة القياسية (Standard Library)
A hierarchical diagram showing the structure of Python's Standard Library. It starts with 'المكتبة القياسية (Standard Library)' at the top, branching into 'النموذج البرمجي (Module)' and 'الدالة (Function)'. Under 'Module', there are three main modules: 'datetime', 'queue', and 'math'. Each module branches further into specific functions or methods. 'datetime' has 'datetime.date.today()' and 'datetime.time()'. 'queue' has 'queue.put()', 'queue.full()', and 'queue.empty()'. 'math' has 'math.pi()', 'math.sin()', 'math.log()', and 'math.pow()'. Ellipses (...) indicate that more functions or methods exist within each module.
📄 النص الكامل للصفحة
يمثل الرسم البياني أدناه بعض نماذج المكتبة القياسية (Standard Library) وبعض دوالها.
--- SECTION: المكتبات بايثون الأخرى ---
لا يقتصر الأمر على المكتبة القياسية المثبتة في بايثون، بل يمكن بسهولة تنزيل مكتبات إضافية وتثبيتها لإضافة دوال أخرى قد تحتاجها في برامج أخرى. تأتي معظم المكتبات الإضافية بأدوات التثبيت الخاصة بها أو ببرنامج التثبيت النصي الخاص بها. بمجرد تثبيت المكتبات الإضافية، فإنها تتصرف مثل مكتبة بايثون القياسية، ولا توجد أوامر خاصة تحتاج إلى معرفتها. ستتعرف أكثر على المكتبات القياسية.
المكتبة القياسية
(Standard Library)
النموذج البرمجي (Module)
الدالة
(Function)
...
datetime
queue
math
datetime.date.today()
datetime.time()
...
queue.put()
queue.full()
queue.empty()
...
math.pi()
math.sin()
math.log()
math.pow()
...
وزارة التعليم
Ministry of Education
2025 - 1447
151
--- VISUAL CONTEXT ---
**DIAGRAM**: المكتبة القياسية (Standard Library)
Description: A hierarchical diagram showing the structure of Python's Standard Library. It starts with 'المكتبة القياسية (Standard Library)' at the top, branching into 'النموذج البرمجي (Module)' and 'الدالة (Function)'. Under 'Module', there are three main modules: 'datetime', 'queue', and 'math'. Each module branches further into specific functions or methods. 'datetime' has 'datetime.date.today()' and 'datetime.time()'. 'queue' has 'queue.put()', 'queue.full()', and 'queue.empty()'. 'math' has 'math.pi()', 'math.sin()', 'math.log()', and 'math.pow()'. Ellipses (...) indicate that more functions or methods exist within each module.
Data: Illustrates the organization of common Python standard library modules and their associated functions.
Context: This diagram visually explains the structure and components of Python's Standard Library, showing how modules like datetime, queue, and math are organized and what kind of functions they contain.