Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Basics (2015) Letter Game App Even or Odd Loop

what is wrong with my code. Please help

I can't seem to figure out where I went wrong as the hints are not suggestive of main issue

even.py
    import random
    start=5
    def even_odd(num):
        if num%2==0:

            print ("{} is even".format(num))
        else:
            print("{} is odd."format(num)

        # If % 2 is 0, the number is even.
        # Since 0 is falsey, we have to invert it with not.
    while start!=0:
                  randomnum=random.randint(1,99)
                  even_odd(randomnum)
                  start-=1
luke begley
luke begley
1,120 Points

I do not know python but your else: print("{} is odd."format(num) should be print("{} is odd".format(num)) if it were to match the format of the if statement.

1 Answer

Wade Williams
Wade Williams
24,476 Points

It appears you have syntax error when printing out your odd number. The "." is in the wrong place and you're missing a closing parenthesis. Also check all of your indentation, it's hard to tell with your code sample, but looks like the you might have some indentation errors.

print("{} is odd."format(num)

# Should be

print("{} is odd".format(num))

A note about your while loop condition, the pythonic way is to do:

# start is Truthy as long as it's greater than 0
# 0 is Falsey so loop will break when start == 0
while start:

Here's all the code refactored

import random

def even_odd(num):

    if num % 2 == 0:
        print("{} is even".format(num))
    else:
        print("{} is odd".format(num))

    return not num % 2

start = 5

while start:
    even_odd(random.randint(1, 99))
    start -= 1