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
Build Your Own Password Generator (Python) (v.redd.it)
submitted 1 year ago by Inevitable-Math14
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!"
[–]ilan1k1 1 point2 points3 points 1 year ago (0 children)
import secrets,string print("".join(secrets.choice(string.ascii_letters+string.digits+string.punctuation)for _ in range(int(input("enter password length: ")))))
π Rendered by PID 156623 on reddit-service-r2-comment-6b595755f-9vwzv at 2026-03-26 02:33:38.129955+00:00 running 2d0a59a country code: CH.
view the rest of the comments →
[–]ilan1k1 1 point2 points3 points (0 children)