summaryrefslogtreecommitdiff
path: root/progs/a880.py
blob: a2fa0b78e298e3cba4ff01e898f62338af9b0ead (plain)
1
2
3
4
5
6
def largest_pos(list1): 
    max = list1[0] 
    for x in list1: 
        if x > max : 
             max = x  
    return max