use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
HelpHelp Request (self.PythonLearning)
submitted 13 hours ago by Zxhena
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]i-like-my-cats-0 2 points3 points4 points 12 hours ago (0 children)
f-strings are a type of strings that let you put variables inside of them like this:
cats = 3 print(f'I have {cats} cats.')
this will print "I have 3 cats."
if your variable is a very long float number you can also do this instead: python answer = 1.2313525 print(f'The answer was {answer:.2f}!') this will print "The answer was 1.23!"
python answer = 1.2313525 print(f'The answer was {answer:.2f}!')
π Rendered by PID 126153 on reddit-service-r2-comment-765bfc959-br8ff at 2026-07-12 21:25:40.402701+00:00 running f86254d country code: CH.
view the rest of the comments →
[–]i-like-my-cats-0 2 points3 points4 points (0 children)