I am able to get the maximum value in the array with an explicit loop:
def main():
a = [2,1,5,234,3,44,7,6,4,5,9,11,12,14,13]
max = 0
for number in a:
if number > max:
max = number
print(max)
if __name__ == '__main__':
main()
How can I get the index (position) of that value?
if number > maxcould be considered using the builtin method__gt__of the built-in typelist:) Seriously though - why can't you just use the built-inmax- just an intellectual exercise or self-torture?maxis the correct, concise and efficient method for this in Python, but you're after ways of how not to do it?