Skip to content

Instantly share code, notes, and snippets.

@ehedaoo
Created May 2, 2017 11:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ehedaoo/c87032d9fb1588e00db74150711a7ae6 to your computer and use it in GitHub Desktop.
Save ehedaoo/c87032d9fb1588e00db74150711a7ae6 to your computer and use it in GitHub Desktop.
Write a Python program to get the largest number from a list.
# Write a Python program to get the largest number from a list.
# a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
print(max(a))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment