Skip to content

Instantly share code, notes, and snippets.

@odanga94
Last active October 25, 2019 16:15
Show Gist options
  • Save odanga94/a073542097b65a9290e3afd8d40338ae to your computer and use it in GitHub Desktop.
Save odanga94/a073542097b65a9290e3afd8d40338ae to your computer and use it in GitHub Desktop.
PracticePython/Exercise28
numbers = [70, 55, 100.5]
def max_(numbers):
greatest = numbers[0]
for x in numbers:
if x > greatest:
greatest = x
print(greatest)
max_(numbers)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment