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 trialDantee Fluellen
1,499 Pointscan 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
Treehouse Moderator 68,441 PointsThe 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
1,499 PointsDantee Fluellen
1,499 PointsNot the second print the first print
Kailash Seshadri
3,087 PointsKailash Seshadri
3,087 PointsDantee, 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?