📜  如何使用Python生成随机电话号码?

📅  最后修改于: 2022-05-13 01:54:51.158000             🧑  作者: Mango

如何使用Python生成随机电话号码?

在本文中,我们将学习如何使用Python生成随机电话号码。一般来说,印度电话号码是 10 位数字,以 9、8、7 或 6 开头。

方法:

  • 我们将使用随机库来生成随机数。
  • 该号码应包含 10 位数字。
  • 第一个数字应该以 9 或 8 或 7 或 6 开头,我们将使用 randint() 方法。
  • 其余 9 位数字也将使用 randint() 方法生成。

例子:

The generated random phone numbers would looklike:
9980231467
8726189362

执行:

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


输出:

8349603502