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!
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

Stephen Lamm
6,244 PointsWhy is my REPL not working properly?
Whenever I try to "print(attendee)" nothing happens.
" treehouse:~/workspace$ python -i meeting.py There are 8 potential attendees currently
attendees ['Ken', 'Alena', 'Treasure', 'Ashley', 'James', 'Guil'] for attendee in attendees: . . . print(attendee) . . . " <--- instead of getting the list of attendees, I'm getting these three dots.
1 Answer

KRIS NIKOLAISEN
54,944 PointsIt is allowing you to enter more lines in your for loop. To execute instead of Enter
use Ctrl+Enter
in Windows and probably Cmd+Enter
for Mac
Stephen Lamm
6,244 PointsStephen Lamm
6,244 PointsThanks for the reply! Turns out I just needed to press Enter a second time, I was never instructed to do that in the lesson, or any previous lesson, but I worked it out, thanks again!