So in this case the integer is 2013, and the maximum number would be 3. How would I proceed to doing so? Any help is appreciated. Thanks!

有帮助吗?

解决方案

max([int(c) for c in str(2013)])

first you convert the number to a string, this allows to look at every digit one by one, than you convert it into a list of single digits and look for the maximum

an easier to read solution is

max = -1

for c in str(2013):
    i = int(c)
    if i > max:
        max = i
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top