Lista de python itera em 1 linha

mylist = [1,4,5,8,9,11,13,12]

newlist = [x for x in mylist if x%2 == 1]
print(newlist)
Nervous Nightingale