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

console not working?

So for some reason the console just keeps giving me the treehouse:`/workspace$ line when I type python wishlist.py.
It doesn't show me the code. books = [ "Learning Python: Powerful Object-Oriented Programming - Mark Lutz", "Automate the Boring Stuff with Python: Practical Programming for Total Beginners - Al Sweigart", "Python for Data Analysis - Wes McKinney", "Fluent Python: Clear, Concise, and Effective Programming - Luciano Ramalho", "Python for Kids: A Playful Introduction To Programming - Jason R. Briggs", "Hello Web App: Learn How to Build a Web App - Tracy Osborn", ]

video_games = [ "The Legend of Zelda: Breath of the Wild", "Splatoon 2:", "Super Mario Odyssey", ] def display_wishlist(display_name, wishes): print(display_name+ ":") suggested_gift = wishes.pop(0) print("======>", suggested_gift, "<======") for wish in wishes: print("* " + wish)
print()

display_wishlist("Books", books)
display_wishlist("Video Games", video_games)

2 Answers

Steven Parker
Steven Parker
229,732 Points

Typing "python wishlist.py" won't show the code, it will run it. If you see nothing then perhaps the program is ending without producing any output.

To facilitate replication of the issue, make a snapshot of your workspace and post the link to it here.

Thank you for replying. I have figured it out now. It was an indentation error. I am struggling with knowing when to indent and how much.

Steven Parker
Steven Parker
229,732 Points

Proper indentation is crucial in Python. Happy coding!