Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 1, 2021 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/f8d9c293fd1d3a4eb0a96c66a2078bc8 to your computer and use it in GitHub Desktop.
Save parzibyte/f8d9c293fd1d3a4eb0a96c66a2078bc8 to your computer and use it in GitHub Desktop.
import random
# https://parzibyte.me/blog
aleatorio = random.uniform(0.75, 1.0)
redondeado = round(aleatorio, 2)
print(f"El aleatorio redondeado es: {redondeado}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment