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 trialAlan T.
4,784 PointsWhy aren't there quotes surrounding 3?
In the video, the example "You just bought {} {}.".format(3, "fidget spinners") displays, "You just bought 3 fidget spinners." but why aren't there quotes surrounding the 3 when you format it? Maybe I missed something in a lesson, so that's why I'm unsure.
3 Answers
Steven Parker
231,236 PointsQuotes go around literal strings, but not around literal numbers. The arguments to "format" can be either type, and are converted to strings automatically if needed.
robertdorgan
5,944 PointsIntegers or int do not require quotes. Quotes are used for strings.
Jonathan Marus
1,755 PointsOh I actually tried this just messing around like str(42 + "eleven") i expected like the print function to be 42eleven, but instead it messes up, so instead you would do str({} {}.".format(42, "eleven:)
What i would like to knwo is what the heck is {} or .". or format( :F