Saved Bookmarks
| 1. |
Define a method called Average which accept two integer parameter and return their average as floating point value.answer fastplease don't spam |
|
Answer» Answer: def Average(x,y): return FLOAT(x+y)/2 print(Average(10,3)) Explanation: This is the program WRITTEN in Python 10,3 are the PARAMETERS of the function Average HOPE IT HELPS YOU DO FOLLOW FOR MORE PROGRAMS MARK AS BRAINLIEST (output is ATTACHED look at that) |
|