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

not sure whats happening

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",
]

print("buy for me: {}".format(books[0]))

print("books")
for book in book: 
    print("* " + book)

#now its ganna be nice and clean  
def display_wishlist(display_name, wishes)
#atick over here btw
    items = wishes.copy() <-------------------------------------why is this called items?
    print(display_name + "!")
    suggested_gift = items.pop(0)
    print("======>", suggested_gift, "<======")
    #taking only one in this case by only having one 
    for item in items: 
        print("* " + wish)
    print()

dispaly_wishlist("books", books)
display_wishlist("video games", video_games)

1 Answer

Bruce Röttgers
Bruce Röttgers
18,211 Points

What exactly is your question Michael Hulet can you edit the formatting