import random
a=range(10) random.shuffle(a) print(a)
Si vous entrez un code comme, vous obtiendrez l'erreur suivante.
/usr/local/Cellar/python3/3.6.1/Frameworks/Python.framework/Versions/3.6/bin/python3.6 /Users//PycharmProjects/demo4.py
Traceback (most recent call last):
File "/Users//PycharmProjects/demo4.py", line 6, in
Process finished with exit code 1
Puisque random.randint (a, b) peut générer normalement des nombres aléatoires, je pense qu'il n'y a aucun problème avec l'importation aléatoire. Veuillez aider quelqu'un.
Recommended Posts