Función randint() en Python
randint() es una función incorporada del módulo aleatorio en Python3. El módulo aleatorio da acceso a varias funciones útiles y una de ellas puede generar números aleatorios, que es randint() . Sintaxis: randint(start, end) Parámetros: (start, end) : Both of them must be integer type values. Devoluciones : A random integer in range [start, end] including … Continue reading «Función randint() en Python»