add comments

This commit is contained in:
Lei PAN
2022-06-08 09:30:28 +02:00
parent 4f1d45f577
commit d19c965209
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ def get_random_id_number() -> str:
id_number = str(ran)
return id_number
# 产生中国护照号
def get_random_passport_id_number() -> str:
S = 7 # number of characters in the string.
ran = ''.join(random.choices(string.digits, k=S))