MCPcopy
hub / github.com/CodeWithHarry/The-Ultimate-Python-Course / avg

Function avg

Chapter 8/01_functions.py:16–22  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14
15# Function Definition
16def avg():
17 a = int(input("Enter your number: "))
18 b = int(input("Enter your number: "))
19 c = int(input("Enter your number: "))
20
21 average = (a + b + c)/3
22 print(average)
23
24
25avg() # Function Call

Callers 1

01_functions.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected