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 trialAkhila Jana
Courses Plus Student 577 Pointswhere 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?
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
231,236 PointsThey 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"
Steven Parker
231,236 PointsYou 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!
Akhila Jana
Courses Plus Student 577 PointsAkhila Jana
Courses Plus Student 577 PointsThanks, Parker. That helped. Not sure why my mind thought I could use a function