Horje
all python commands list and what they do Code Example
all python commands list and what they do
def maxi(tab):    
    m=tab[0]     
    ind=0
    for i in range(1,len(tab)):
        if tab[i]>m:
            m=tab[i]
            ind=i
    return (m,ind)




Python

Related
stack widgets in tkinter Code Example stack widgets in tkinter Code Example
use regex python without re Code Example use regex python without re Code Example
how to get every character in a string python Code Example how to get every character in a string python Code Example
send command dynamo civid Code Example send command dynamo civid Code Example
extend tuple python Code Example extend tuple python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7