“Lettre en majuscule aléatoire Python” Réponses codées

python obtenir un caractère aléatoire de la chaîne

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)
Xanthous Xenomorph

Lettre en majuscule aléatoire Python

#Write a program that displays a random uppercase letter.
import random

l='ABCDEFGHIJHIJKLMNOPQRSTUVWXYZ'
print(str(random.choice(l)))
Farhan Aziz

Réponses similaires à “Lettre en majuscule aléatoire Python”

Questions similaires à “Lettre en majuscule aléatoire Python”

Plus de réponses similaires à “Lettre en majuscule aléatoire Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code