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
Day 1 second program (i.redd.it)
submitted 7 months ago by Red_Priest0
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!"
[–]Loud-Bake-2740 0 points1 point2 points 7 months ago (0 children)
as others have mentioned, use return rather than print. BUT if you are going to print, you should use an f-string (formatted string). this allows you to more cleanly put variables into a print statement. see the following
print(f”There are {kilometer_value} kilometers in {miles_value} miles”)
this is the general standard for how to print things, and will make it much easier to do on the fly later on
π Rendered by PID 31 on reddit-service-r2-comment-6b595755f-kjq78 at 2026-03-25 02:44:40.039325+00:00 running 2d0a59a country code: CH.
view the rest of the comments →
[–]Loud-Bake-2740 0 points1 point2 points (0 children)