How to use 'greatest of 3 numbers in python' in Python

Every line of 'greatest of 3 numbers in python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
4def greatest_digit(n):
5 max_digit = int(n % 10)
6
7 while n:
8 if max_digit < n % 10:
9 max_digit = n % 10
10 else:
11 max_digit = max_digit
12 n /= 10
13 return max_digit

Related snippets