How to find max and min of a list with Python

2 Answers

0 votes
lst = [1, 7, 99, -2, 88]

print(max(lst))
print(min(lst))


'''
run:

99
-2

'''

 



answered Nov 2, 2018 by avibootz
0 votes
lst = ['java', 'python', 'c', 'php', 'c++']

print(max(lst))
print(min(lst))


'''
run:

python
c

'''

 



answered Nov 2, 2018 by avibootz
...