Explicación de los elementos básicos de python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
375 B

3 years ago
  1. import random as rand #imports library random
  2. #sets library alias to rand
  3. size = int(input("Enter dice size:")) #Asks for dice faces
  4. print("You rolled a ",rand.randint(1,size))
  5. #Prints result of roll using randint
  6. #from the random library