Answers for "add random.choice to string"

6

python random string

import secrets 
secrets.token_hex(nbytes=16)

# this will produce something like 
# aa82d48e5bff564f3221d02194611c13
Posted by: Guest on August-11-2020
0

python generate random string

''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(N))
Posted by: Guest on October-29-2020
0

python get random character from string

import random

#String
string = "abcdefghijklmnopqrstuvwxyz"
array = []
for c in string:
  array += [c]
 
print(array[random.randint(0, len(array)-1)])

# Faster and more efficient
random.choice(string)
Posted by: Guest on September-20-2020

Python Answers by Framework

Browse Popular Code Answers by Language