About 180,000 results
Open links in new tab
  1. How to generate random strings in Python? - Stack Overflow

    Mar 17, 2022 · if a single random string is needed, just keep the no_of_blocks variable to be equal to 1 and len_sep to specify the length of the random string. eg: len_sep = 10, …

  2. Random string generation with upper case letters and digits

    This Stack Overflow quesion is the current top Google result for "random string Python". The current top answer is: ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in …

  3. python - How can I randomly select (choose) an item from a list …

    Nov 20, 2008 · NumPy solution: numpy.random.choice. For this question, it works the same as the accepted answer (import random; random.choice()), but I added it because the …

  4. python - How to generate a random string with symbols - Stack …

    Nov 2, 2017 · To generate a random string we need to use the following two Python modules. String module which contains various string constant which contains the ASCII characters of …

  5. python - How to generate a random string - Stack Overflow

    Jun 7, 2016 · rand_str = lambda n: ''.join([random.choice(string.ascii_lowercase) for i in range(n)]) # Now to generate a random string of length 10 s = rand_str(10) random.choice returns a …

  6. What's the best way to generate random strings of a specific …

    #!/usr/bin/env python from typing import Generator from random import SystemRandom as RND from string import ascii_uppercase, digits def string_generator(size: int = 1, amount: int = 1) -> …

  7. Generate a random letter in Python - Stack Overflow

    Jun 17, 2012 · The script simply generates passwords and is just an example to demonstrate various ways of generating random characters. import string import random import sys #make …

  8. How to create a GUID/UUID in Python - Stack Overflow

    Aug 6, 2022 · If you're not going to bother using it in any UUID contexts, you may as well just use random.getrandbits(128).to_bytes(16, 'little') or (for crypto randomness) os.urandom(16) and …

  9. python - Most lightweight way to create a random string and a …

    May 6, 2010 · What is the most lightweight way to create a random string of 30 characters like the following? ufhy3skj5nca0d2dfh9hwd2tbk9sw1 And an hexadecimal number of 30 digits li

  10. python - random string from a sequence - Stack Overflow

    random string in python. 0. python random sequence from list. 0. Generating Random Sequence of a string. 3

Refresh