How to find the highest digit in negative int number with Python

1 Answer

0 votes
n = -213
print(max(int(i) for i in str(n) if i not in '.-'))
          
n = -76594
print(max(int(i) for i in str(n) if i not in '.-'))
          
n = -76852
print(sorted(list(str(n)))[-1])

  
  
  
  
'''
run:
  
3
9
8
 
'''

 



answered Jun 9, 2020 by avibootz

Related questions

3 answers 219 views
3 answers 271 views
1 answer 153 views
1 answer 136 views
1 answer 147 views
1 answer 142 views
1 answer 160 views
...