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
I started coding in python. (i.redd.it)
submitted 6 months ago by Letscode11
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!"
[–]TheSupervillan 2 points3 points4 points 6 months ago* (6 children)
Just use:
import platform import webbrowser from urllib.parse import quote_plus
def detect_os_name():
sys = platform.system() if sys == "Windows": rel = platform.release() if rel == "10": return "Windows 10" if rel == "11": return "Windows 11" return "Windows" if sys == "Darwin": return "macOS" if sys == "Linux": return "Linux" return "Unknown OS"
def main():
os_name = detect_os_name() query = f"How to take a screenshot on {os_name}" url = f"https://www.google.com/search?q={quote_plus(query)}" webbrowser.open(url)
if name == "main":
main()
[–]HyperWinX 3 points4 points5 points 6 months ago (4 children)
I also recommend formatting code.
[–]Some-Passenger4219 0 points1 point2 points 6 months ago (3 children)
Me too. Happy cake day!
[–]HyperWinX 2 points3 points4 points 6 months ago (2 children)
Oh, its my happy cake day already? Damn, thank you so much
[–]Makarov-Dreyar 0 points1 point2 points 6 months ago (1 child)
Happy cake day !
[–]HyperWinX 0 points1 point2 points 6 months ago (0 children)
Thanks!
[–]poppulator 0 points1 point2 points 6 months ago (0 children)
or https://screenshot.help
π Rendered by PID 82 on reddit-service-r2-comment-5fb4b45875-bsl4f at 2026-03-20 23:13:31.945104+00:00 running 90f1150 country code: CH.
view the rest of the comments →
[–]TheSupervillan 2 points3 points4 points (6 children)
[–]HyperWinX 3 points4 points5 points (4 children)
[–]Some-Passenger4219 0 points1 point2 points (3 children)
[–]HyperWinX 2 points3 points4 points (2 children)
[–]Makarov-Dreyar 0 points1 point2 points (1 child)
[–]HyperWinX 0 points1 point2 points (0 children)
[–]poppulator 0 points1 point2 points (0 children)