python random生成隨機手機號

上代碼python

 1 #---------------
 2 #!/usr/bin/python
 3 #_*_coding:UTF-8_*_
 4 import random  5 
 6 #生成隨機手機號
 7 str_start=random.choice(['135','136','138'])  8 str_end=''.join(random.sample('0123456789',8))  9 str_phone=str_start+str_end 10 print(str_phone)
相關文章
相關標籤/搜索