Python Generator Surat Acak
import random
import string
random.choice(string.ascii_letters)
Doubtful Dingo
import random
import string
random.choice(string.ascii_letters)
import random
import string
def get_random_alphanumeric_string(length):
letters_and_digits = string.ascii_letters + string.digits
result_str = ''.join((random.choice(letters_and_digits) for i in range(length)))
print("Random alphanumeric String is:", result_str)
get_random_alphanumeric_string(8)
get_random_alphanumeric_string(8)
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)
''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(N))