##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 06\06.12 - Copying elements to other lists.py
# Description: Copying elements to other lists
##############################################################################
values = [9, 8, 7, 12, 0, 13, 21]
evens = []
odds = []
for e in values:
if e % 2 == 0:
evens.append(e)
else:
odds.append(e)
print("Evens: ", evens)
print("Odd: ", odds)