new_list = [ ]
for i in liste:
	if i > 5:
		new_list.append(i)
