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 Meet Lists Addition

Dantee Fluellen
Dantee Fluellen
1,499 Points

can you not have to len() in the same string?

I was just messing around with stuff and i was wondering can you not having two len() in the same string? https://w.trhou.se/llb89oj6vb As you can see here. Its not working.

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

The error seems to caused by a typo. There is a comma inside the string and no comma between the string and the len:

print("There may be," len(optional_ppl), "coming to the meeting") 

Post back if you need more help. Good luck!!!

Dantee Fluellen
Dantee Fluellen
1,499 Points

Not the second print the first print

Kailash Seshadri
Kailash Seshadri
3,087 Points

Dantee, there seems to be no issues with the first print function, and it works fine when I copy paste it into my own workspace. The only error in the file is the typo in the second print function, maybe fixing that helps sort out any errors you might have?