En este artículo, aprenderemos cómo generar un número de teléfono aleatorio usando Python. En general, los números de teléfono indios tienen 10 dígitos y comienzan con 9, 8, 7 o 6.
Acercarse:
- Usaremos la biblioteca aleatoria para generar números aleatorios.
- El número debe contener 10 dígitos.
- El primer dígito debe comenzar con 9 u 8 o 7 o 6, usaremos el método randint() .
- Los 9 dígitos restantes también se generarán mediante el método randint() .
Ejemplos:
The generated random phone numbers would looklike: 9980231467 8726189362
Implementación:
Python3
# import module import random as r ph_no = [] # the first number should be in the range of 6 to 9 ph_no.append(r.randint(6, 9)) # the for loop is used to append the other 9 numbers. # the other 9 numbers can be in the range of 0 to 9. for i in range(1, 10): ph_no.append(r.randint(0, 9)) # printing the number for i in ph_no: print(i, end="")
Producción:
8349603502
Publicación traducida automáticamente
Artículo escrito por pulamolusaimohan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA