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

مرحبًا، أيها العالم!


Python هي لغة بسيطة للغاية، وتتميز ببناء جمل برمجي واضح ومباشر.

إنها تشجع المبرمجين على البرمجة بدون شيفرات معيارية مسبقة (مجهزة). أبسط توجيه في Python هو التوجيه "print" - إنه ببساطة يطبع سطرًا (ويشمل أيضًا سطرًا جديدًا، على عكس لغة C).

هناك إصداران رئيسيان من Python، Python 2 وPython 3. يختلف Python 2 و3 بشكل كبير. يستخدم هذا الدليل Python 3، لأنه أكثر صحة من الناحية الدلالية ويدعم الميزات الأحدث.

على سبيل المثال، واحد من الفروق بين Python 2 و3 هو جملة print. في Python 2، جملة "print" ليست وظيفة، ولذلك يتم استدعاؤها بدون أقواس. ومع ذلك، في Python 3، هي وظيفة، ويجب استدعاؤها بالأقواس.

لطباعة سلسلة نصية في Python 3، فقط اكتب:

print("This line will be printed.")

المسافة البادئة

يستخدم Python المسافة البادئة لتحديد الكتل البرمجية، بدلًا من الأقواس المعقوفة. يتم دعم كل من التبويبات والمسافات، لكن المسافة البادئة القياسية تتطلب استخدام أربع مسافات في كود Python القياسي. على سبيل المثال:

x = 1
if x == 1:
    # إزاحة أربع مسافات
    print("x is 1.")

Exercise

استخدم وظيفة "print" لطباعة السطر "Hello, World!".

print("Goodbye, World!") print("Hello, World!") test_output_contains("Hello, World!") success_msg('Great job!')

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!

Next Tutorial Take the Test
Copyright © learnpython.org. Read our Terms of Use and Privacy Policy