def remove_even(l):
    for i in l:
        if i % 2 == 0:
            l.remove(i)
    return l