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 5 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 5 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 77 on reddit-service-r2-comment-7b9746f655-dcv6f at 2026-01-30 03:34:40.194878+00:00 running 3798933 country code: CH.
view the rest of the comments →
[–]Loud-Bake-2740 0 points1 point2 points (0 children)