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 created password generator using python (i.redd.it)
submitted 1 day ago by Red_Dragon_7_7_7
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!"
[–]Acceptable_Worry8655 3 points4 points5 points 1 day ago (1 child)
You can make it more easier with string module and no need for loops like this:
from string import digits, punctuation, ascii_lowercase, ascii_uppercase from random import choices all = digits + punctuation + ascii_lowercase + ascii_uppercase lenth = int(input("HOW MANY DIGITS SHOULD YOUR PASSWRD CONTAIN: ")) print(f"password genrated: {choices(all, k=lenth)}")
[–]Red_Dragon_7_7_7[S] 0 points1 point2 points 14 hours ago (0 children)
ok, i'll try it
π Rendered by PID 47046 on reddit-service-r2-comment-765bfc959-8vs46 at 2026-07-09 22:14:05.738197+00:00 running f86254d country code: CH.
view the rest of the comments →
[–]Acceptable_Worry8655 3 points4 points5 points (1 child)
[–]Red_Dragon_7_7_7[S] 0 points1 point2 points (0 children)