Added PLZ and Tel modules

This commit is contained in:
2018-05-23 23:59:14 +02:00
parent 880fa9f2eb
commit a75eb5e8d3

View File

@@ -0,0 +1,13 @@
from random import randint
def generatePLZ():
plz = ""
for i in range(0,5):
plz = plz + str(randint(0,9))
return plz
def generateTel():
telephone = ""
for i in range(0, 11):
telephone = telephone + str(randint(0,9))
return telephone