update contacts
This commit is contained in:
@@ -8,7 +8,7 @@ letters = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'P', 'Q', 'R', 'S',
|
||||
def get_random_id_number() -> str:
|
||||
S = 8 # number of characters in the string.
|
||||
ran = ''.join(random.choices(string.digits, k=S))
|
||||
id_number = "57" + str(ran)
|
||||
id_number = str(ran)
|
||||
# print("The randomly generated string is : 94" + str(ran)) # print the random data
|
||||
return id_number
|
||||
|
||||
@@ -23,5 +23,5 @@ def get_random_passport_id_number() -> str:
|
||||
if __name__ == '__main__':
|
||||
# for i in range(1,200):
|
||||
# print(get_random_id_number())
|
||||
for i in range(1, 570):
|
||||
for i in range(1, 804):
|
||||
print(get_random_id_number())
|
||||
|
||||
Reference in New Issue
Block a user