Créez le code qui renvoie "A et prétendant B" en python
C'est un mémorandum lors de la création du code qui génère "A et prétendant être B" en python.
Utilisez le choix de python.
import random
l = ["pomme",
"Mandarine",
"fraise",
"ananas",
"fruit du dragon"]
string1=random.choice(l)
string2=random.choice(l)
print(string1, "Faire semblant d'être", string2)
$ python sample.py
Pommes et fruit du dragon faisant semblant d'être
Sélectionnez au hasard des éléments dans la liste en Python random.choice
Recommended Posts