How to find max and min of a list of strings with Python

1 Answer

0 votes
lst = ['java', 'python', 'c', 'php', 'c++']

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


'''
run:

python
c

'''

 



answered Nov 2, 2018 by avibootz
...