Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,933 questions

51,870 answers

573 users

How to find max value and max index in a list with Python

2 Answers

0 votes
lst = [4, 6, 2, 9, 8, 1, 5, 7]

max_value = 0
max_index = 0

for i, n in enumerate(lst):
    if (n > max_value):
        max_value = n
        max_index = i

print(max_value)
print(max_index)  





'''
run:

9
3

'''

 



answered Apr 19, 2021 by avibootz
0 votes
lst = [4, 6, 2, 9, 8, 1, 5, 7]

max_value = max(lst)
max_index = lst.index(max_value)

print(max_value)
print(max_index)  





'''
run:

9
3

'''

 



answered Apr 19, 2021 by avibootz

Related questions

...