“Numéro de téléphone aléatoire Python” Réponses codées

Numéro de téléphone aléatoire Python

import random

def phn():
    n = '0000000000'
    while '9' in n[3:6] or n[3:6]=='000' or n[6]==n[7]==n[8]==n[9]:
        n = str(random.randint(10**9, 10**10-1))
    return n[:3] + '-' + n[3:6] + '-' + n[6:]
MitchAloha

Créer un numéro de téléphone aléatoire Python

# 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="")
Ceefar

Réponses similaires à “Numéro de téléphone aléatoire Python”

Questions similaires à “Numéro de téléphone aléatoire Python”

Plus de réponses similaires à “Numéro de téléphone aléatoire Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code