2024-07-13
print() هي وظيفة تسمح لنا بالإخراج إلى الشاشة
وظيفة الطباعة () لها ثلاثة استخدامات مختلفة؛
يمكننا استخدام اقتباس من أي شخص، ولا يمكن استخدام اقتباس مختلف في نفس السطر
print()---------------------------#create empty line
print("jothilingam")--------------#string should print with""
print(5)------------------------#number can print without ""
print("jo""jo")--------------print without space print("jo" "jo")--------------print without space answer jojo print("jo","jo")--------------print with space answer jo jo
الطباعة باستخدام سلاسل f
name = "jothi" print(f"Hello {name}") # Output : Hello jothi
حرف هروب السطر الجديد \n
print("jo\nthi") jo thi
معلمة الفصل
print("jo","jo",sep="_")...................sep="" is default answer jo_jo
print("jo", "lingam", sep='thi') answer jothilingam
معلمة النهاية
print("jothi",end="lingam") answer jothilingam
print("jothi",end="")----------------without space print("lingam") answer jothilingam
print("jothi",end=" ")----------------with space print("lingam") answer jothi lingam
* المعلمة
print(*"jothilingam") answer j o t h i l i n g a m
معلمات الملف والتدفق، نظرًا لأن هذه المعلمات هي المعلمات التي تسمح لنا بمعالجة الملفات
تنصل: جميع الموارد المقدمة هي جزئيًا من الإنترنت. إذا كان هناك أي انتهاك لحقوق الطبع والنشر الخاصة بك أو الحقوق والمصالح الأخرى، فيرجى توضيح الأسباب التفصيلية وتقديم دليل على حقوق الطبع والنشر أو الحقوق والمصالح ثم إرسالها إلى البريد الإلكتروني: [email protected]. سوف نتعامل مع الأمر لك في أقرب وقت ممكن.
Copyright© 2022 湘ICP备2022001581号-3