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 (Retired) Ins & Outs Ins & Outs

can't get past first step of first python code challenge

I've tried this about a hundred times, and I can't get it right. I even went back and took the food variable from the video and just modified to call it name with my name-

name = input("Renee")

This is the first step of the first code challenge, so there's not a lot I can be missing here....help?

2 Answers

Hi Renee,

All you have to do there is assign your name to the name variable.

name = "Renee"

uhg...thanks, was way overthinking that one!