مشروع لعبة المحفظة اختصار ثلاث سطور
# عمل متغير لي يضع أسماء مفصولة بفاصلة
Enter_List_of_Players = input("If you are ready, enter the names separated by a comma ").split(", ")
# عمل متغير يحتوي على مكتبة فيها اداه اختيار الأسم العشوائي
random_List = __import__("random").choice(Enter_List_of_Players)
# واخيرا الطباعة الأسم الذي اختاره الكمبيوتر
print(f'Ask {random_List} to get out his wau Plllet for dinner on him today')