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 trialGeorge Lugo
Python Web Development Techdegree Student 922 Pointshello what am i doing wrong here
def my_list[4,2,8,"John","george",["gregory","Jasper"]]
def my_list[4,2,8,"John","george",["gregory","Jasper"]]
1 Answer
Steve Hunter
57,712 PointsHi George,
You don't need to def
a list; just use the square brackets as you have done. So, just delete the def
keyword, and you're good to go!
my_list = [3, 2, 1, "Steve", "Hunter", [1, 2]]
Steve.
Dustin James
11,364 PointsDustin James
11,364 PointsGeorge,
The challenge is asking that you make a variable name my_list. What you have written is not declaring a variable. Let me know if you have further questions.