Inspiration
What it does
How we built it
Challenges we ran into
Accomplishments that we're proud of
What we learned
What's next for s3q1_swaramulagari
even_numbers = [] odd_numbers = []
for num in range(1, 11): if num % 2 == 0: even_numbers.append(num) else: odd_numbers.append(num)
print("Even numbers:", even_numbers) print("Odd numbers:", odd_numbers)
Log in or sign up for Devpost to join the conversation.