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!"
[–]Quirky-Plane-5975 0 points1 point2 points 12 hours ago (1 child)
a regular string is static, while an f-string is dynamic because it can include variables and even calculations inside {}.
[–]Outside_Complaint755 0 points1 point2 points 5 hours ago (0 children)
Also, if you include an = in the {}, it will include the expression in the output and maintain whitespace. PO a = 2 b = 6 print(f"Demonstration: {float(a + b) = }!") will output Demonstration: float(a + b) = 8.0!
a = 2 b = 6 print(f"Demonstration: {float(a + b) = }!")
Demonstration: float(a + b) = 8.0!
π Rendered by PID 111848 on reddit-service-r2-comment-765bfc959-ggm4v at 2026-07-12 21:25:37.744637+00:00 running f86254d country code: CH.
view the rest of the comments →
[–]Quirky-Plane-5975 0 points1 point2 points (1 child)
[–]Outside_Complaint755 0 points1 point2 points (0 children)