+ 2

How find the big number in list or function in python?

9th Dec 2017, 8:33 PM
A880
3 Answers
+ 7
highest = max(1, 2, 3) # or max([1, 2, 3]) for lists print max(1, 2, 3)
9th Dec 2017, 8:48 PM
GAWEN STEASY
GAWEN STEASY - avatar
+ 1
look i have a function printed it
9th Dec 2017, 9:25 PM
A880