GratuitمجانيFree ⭐ 4.9 (189) Python 10–12 ans

🛒 Python au Souk MarocainPython في السوق المغربيPython at the Moroccan Souk

Crée un vrai calculateur de prix pour le souk ! Maîtrise variables, opérations et fonctions Python avec des exemples de la vie quotidienne marocaine. أنشئ حاسبة أسعار حقيقية للسوق! أتقن المتغيرات والعمليات والدوال في Python بأمثلة من الحياة اليومية المغربية. Create a real price calculator for the souk! Master variables, operations and Python functions with Moroccan daily life examples.

2h 05min 10–12 ans +100 XP Badge Marchand
RetourرجوعBack
🐍
+100 XP
Badge Marchand 🏪
MissionsالمهامMissions
Éditeur Pythonمحرر PythonPython Editor
ConceptsالمفاهيمConcepts
Le SoukالسوقThe Souk

🛒 Missions au Soukمهام السوقSouk Missions

Chaque mission t'apprend un concept Python réel. Ouvre l'éditeur et code !كل مهمة تعلمك مفهوم Python حقيقياً. افتح المحرر وابرمج!Each mission teaches a real Python concept. Open the editor and code!

🐍 Éditeur Pythonمحرر PythonPython Editor

souk_calculator.py
1
SortieالمخرجاتOutput ViderمسحClear
# Appuie sur "Lancer" pour exécuter ton codeاضغط "تشغيل" لتنفيذ كودكPress "Run" to execute your code

💡 Modifie le code et clique sur Lancer pour voir le résultat ! 💡 عدّل الكود واضغط تشغيل لرؤية النتيجة! 💡 Modify the code and click Run to see the result!

📚 Python — Concepts du SoukPython — مفاهيم السوقPython — Souk Concepts

variableStocker une valeurتخزين قيمةStore a value
# Prix des oranges au souk de Fès
prix_orange = 4.5
quantite = 12
print(prix_orange) # → 4.5
opérationsCalculerالحسابCalculate
total = prix_orange * quantite
remise = total * 0.10
a_payer = total - remise
print(f"Total: {a_payer} dhs")
defCréer une fonctionإنشاء دالةCreate a function
def calculer_prix(prix, qte, remise=0):
    total = prix * qte
    return total * (1 - remise)
print(calculer_prix(5, 3, 0.10)) # 13.5
if / elseDécision au soukالقرار في السوقSouk decision
if total > 50:
    print("Remise 10% !")
elif total > 20:
    print("Remise 5%")
else:
    print("Prix normal")

🛍️ Les produits du soukمنتجات السوقSouk products

# Dictionnaire des produits du souk

💡 Astuce : utilise ces données dans ton éditeur !💡 نصيحة: استخدم هذه البيانات في محررك!💡 Tip: use this data in your editor!

Copie le dictionnaire dans l'éditeur et crée une fonction qui calcule le total de ta liste de courses.انسخ القاموس في المحرر وأنشئ دالة تحسب إجمالي قائمة مشترياتك.Copy the dictionary to the editor and create a function that calculates the total of your shopping list.