Quick actions

cmd+k|ctrl+k

Navigation

Languages

Exercise Function

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-23T09:19:14.612921Z

Updated

2026-07-23T09:19:14.612921Z

def highest_even(*args):
    even=[]
    for item in args:
        if item%2==0:
            even.append(item)
            pass
    a=0
    for e in even:
        
        if e>a:
            a=e
        
    print(a)
#also we can write print(max(even)
highest_even(2,130,191,6,140,9,199,110)
INFO