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) Python for Beginners Correct errors

Akhila Jana
PLUS
Akhila Jana
Courses Plus Student 577 Points

where do I declare a function/variable?

Couldn't figure out why this code is throwing an error even after declaring them. Can someone please help me out?

errors.py
print("Hello")
def name:
    "Akhila"

print(name)

print("Let's do some math!")
a = 5
print(5 + a)

print("Thanks for playing along!")

2 Answers

Steven Parker
Steven Parker
229,785 Points

They are done different ways. The "def" keyword is used for declaring a function, but what you're doing is simply creating a variable. This is done just by assigning it:

name = "Akhila"
Akhila Jana
Akhila Jana
Courses Plus Student 577 Points

Thanks, Parker. That helped. Not sure why my mind thought I could use a function

Steven Parker
Steven Parker
229,785 Points

You could use a function, but that's overkill for this exercise. You'll learn more about functions soon as you progress in the course.

Happy coding!