Menu
Coddy logo textTech

Toplam ve Ortalama

Coddy'nin Python Journey'sinin Fundamentals bölümünün bir parçası — ders 72 / 77.

challenge icon

Görev

Kolay

Toplam ve ortalama harcamayı hesaplama seçeneğini (3) yönetin.

Eğer harcamalar listesi boşsa, şu çıktıyı verin:

No expenses recorded yet.

Aksi takdirde, listeyi aşağıdaki formatta yazdırın:

Total expense: 600.0
Average expense: 200.0

Daha önce girilen harcamaların 300, 200 ve 100 olduğunu varsayarsak. (Bu sırayla!)

Kendin dene

print("Welcome to the Daily Expense Tracker!")

# Display menu once
print("\nMenu:")
print("1. Add a new expense")
print("2. View all expenses")
print("3. Calculate total and average expense")
print("4. Clear all expenses")
print("5. Exit")

# Initialize an empty list to store expenses
expenses = []

while True:
    # Get user choice
    choice = input()
    
    if choice == "1":
        # Add a new expense
        amount = float(input())
        expenses.append(amount)
        print("Expense added successfully!")

    elif choice == "2":
        # View all expenses
        if len(expenses) == 0:
            print("No expenses recorded yet.")
        else:
            print("Your expenses:")
            for i in range(len(expenses)):
                print(f"{i + 1}. {expenses[i]}")

    elif choice == "5":
        # Exit the program
        print("Exiting the Daily Expense Tracker. Goodbye!")
        break

Fundamentals bölümündeki tüm dersler