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 Types and Branching Comparisons

syntax "else " and "elif" are showing invalid syntax

I don't know how to show my code properly so i hope this is enough to get help!

https://w.trhou.se/0zrqgd6ayz

1 Answer

Whitespace matters in Python. The elif and else statements should be at the same indentation level as the if statement.

if first_name == "Eurie":
    print(first_name, "is learning python")
elif first_name == "Logan":
    print(first_name, "is learning with fellow students in the community!  Me too!")
else:
    # this is just in case we have a younger user who can;t yet ready
    age = int(input("how old are you are?  "))
    if age <= 6:
        print("Wow you're {}! If you're confident with your reading already...".format(age))
        print("you should totally learn python, {}!".format(first_name))
        print("Have a great day {}!".format(first_name))