Definiowanie funkcji niestandardowej

Python dla programistów – poziom średniozaawansowany

Jasmin Ludolf

Senior Data Science Content Developer

Obliczanie średniej

# List of preparation times (minutes)
preparation_times = [19.23, 15.67, 48.57, 23.45, 12.06, 34.56, 45.67]

# Calculating average preparation time average_time = sum(preparation_times) / len(preparation_times)
# Rounding the results rounded_average_time = round(average_time, 2) print(average_time)
28.46
Python dla programistów – poziom średniozaawansowany

Kiedy tworzyć funkcję niestandardową

Nie powtarzaj się (DRY)

$$

  • Kiedy warto tworzyć funkcję niestandardową:
    • Liczba linii kodu
    • Złożoność kodu
    • Częstotliwość użycia

Pustynia

Python dla programistów – poziom średniozaawansowany

Tworzenie funkcji niestandardowej

# Create a custom function to calculate the average value
def








Python dla programistów – poziom średniozaawansowany

Tworzenie funkcji niestandardowej

# Create a custom function to calculate the average value
def average








Python dla programistów – poziom średniozaawansowany

Tworzenie funkcji niestandardowej

# Create a custom function to calculate the average value
def average(








Python dla programistów – poziom średniozaawansowany

Tworzenie funkcji niestandardowej

# Create a custom function to calculate the average value
def average(values)








  • values (argument) – informacja potrzebna funkcji do działania
Python dla programistów – poziom średniozaawansowany

Tworzenie funkcji niestandardowej

# Create a custom function to calculate the average value
def average(values):








Python dla programistów – poziom średniozaawansowany

Tworzenie funkcji niestandardowej

# Create a custom function to calculate the average value
def average(values):
    # Calculate the average
    average_value = sum(values) / len(values)





Python dla programistów – poziom średniozaawansowany

Tworzenie funkcji niestandardowej

# Create a custom function to calculate the average value
def average(values):
    # Calculate the average
    average_value = sum(values) / len(values)

    # Round the results
    rounded_average = round(average_value, 2)



Python dla programistów – poziom średniozaawansowany

Tworzenie funkcji niestandardowej

# Create a custom function to calculate the average value
def average(values):
    # Calculate the average
    average_value = sum(values) / len(values)

    # Round the results
    rounded_average = round(average_value, 2)

# Return an output return
  • average_value i rounded_average są dostępne tylko wewnątrz average()
Python dla programistów – poziom średniozaawansowany

Tworzenie funkcji niestandardowej

# Create a custom function to calculate the average value
def average(values):
    # Calculate the average
    average_value = sum(values) / len(values)

    # Round the results
    rounded_average = round(average_value, 2)

    # Return rounded_average as an output
    return rounded_average
  • Dokumentacja jest niezbędna 📚
Python dla programistów – poziom średniozaawansowany

Używanie funkcji niestandardowej

# List of preparation times (minutes)
preparation_times = [19.23, 15.67, 48.57, 23.45, 12.06, 34.56, 45.67]

# Calculating the average print(average(preparation_times))
28.46
# List of orders
orders = [12, 8, 10, 9, 15, 21, 16]

print(average(orders))
12.86
Python dla programistów – poziom średniozaawansowany

Zapisywanie wyniku funkcji

# Calculating the average
print(average(preparation_times))
28.46
# Storing average_time
average_time = average(preparation_times)

print(average_time)
28.46
Python dla programistów – poziom średniozaawansowany

Czas na ćwiczenia!

Python dla programistów – poziom średniozaawansowany

Preparing Video For Download...