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 defining a function

Hi, I've been revising by writing 'very basic' definition of functions, and its hit and miss most of the time with SyntaxError appearing. some codes I write don't have this, and some of them are identical. I can't seem to figure out what I am doing wrong. any help appreciated Thanks

def future_age(age): old = age + 10 print ("in ten years, you will be" , old , "years old")

take_age = int(input("what is your age? ") future_age(take_age)

File "play.py", line 6
future_age(take_age)
^
SyntaxError: invalid syntax

2 Answers

Steven Parker
Steven Parker
243,656 Points

The problem is actually on the previous line, where the parentheses are unbalanced:

take_age = int(input("what is your age? ")   # <-- missing ) symbol

And when posting code in future, use the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area. :arrow_heading_down:   Or watch this video on code formatting.

perfect. thank you so much. was driving. me nuts!