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

1 Answer

0 votes
t = ('java', 'python', 'c', 'php', 'c++')

print(max(t))
print(min(t))


'''
run:

python
c

'''

 



answered Nov 2, 2018 by avibootz

Related questions

2 answers 201 views
1 answer 166 views
1 answer 182 views
2 answers 230 views
1 answer 127 views
1 answer 160 views
1 answer 127 views
...