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

My code is not running, I don't know or see my mistakes...

first_name = input("What is your name? ")
print("Hello,",first_name)
if first_name == "Sezare":
  print(first_name, "is learning python")
  elif first_name == "Maximilian":
  print(first_name, "is learning our new language java! Me too!")
  else: 
  print("You must take this jva for learning our language {}!".format(first_name))
print("Have a great day, {}!".format(first_name)) 

1 Answer

boi
boi
14,242 Points

You have indentation errors

first_name = input("What is your name? ")

print("Hello,",first_name)

if first_name == "Sezare":
    print(first_name, "is learning python")  #Fixed indent here

elif first_name == "Maximilian": #Fixed indent here
    print(first_name, "is learning our new language java! Me too!")  #Fixed indent here

else:   #Fixed indent here
    print("You must take this jva for learning our language {}!".format(first_name))  #Fixed indent here

print("Have a great day, {}!".format(first_name))