Created
April 16, 2025 06:37
-
-
Save muhammad-asn/4407d8477b24dc183bae73b5e841885b to your computer and use it in GitHub Desktop.
Script python to generate 6 chars
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python3 | |
import random; import string; ''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(6)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment