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 Introducing Lists Using Lists Mutability

since craigs alteration at 6:17 my display_name def parameter is not accessable is that intentional?

since craigs alteration at 6:17 my display_name def parameter is not accessed by anything.
On visual studio it says display_name not accessed Pylance

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

print()

video_games = [
"The Legend of Zelda: Breath of the Wild",
"Splatoon 2",
"Super Mario Odyssey",
]

def display_wishlist(display_name, wishes):
items = wishes.copy()
suggested_gift = items.pop(0)
print("======>", suggested_gift, "<======" )
for item in items:
print("* " + item)
print()

display_wishlist("video_games", video_games)
display_wishlist("books", books)

1 Answer

Jeff Muday
MOD
Jeff Muday
Treehouse Moderator 28,716 Points

(I took the liberty of formatting the code for display purposes.)

Your code looks correct. It runs in VSCode. Maybe it was a fluke of the VSCode operational state?

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

print()

video_games = [
    "The Legend of Zelda: Breath of the Wild",
    "Splatoon 2",
    "Super Mario Odyssey",
]

def display_wishlist(display_name, wishes):
    items = wishes.copy()
    suggested_gift = items.pop(0)
    print("======>", suggested_gift, "<======" )
    for item in items:
        print("* " + item)
    print()

display_wishlist("video_games", video_games)
display_wishlist("books", books)