We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bf5019 commit d041ee8Copy full SHA for d041ee8
random-names.py renamed to random_names.py
@@ -15,16 +15,16 @@
15
16
17
def Number(start=0, end=100000):
18
- '''
+ """
19
Returns random integer between range of numbers
20
21
return random.randint(start, end)
22
23
24
def UpperChars(NoOfChars=2):
25
26
UpperChars(NoOfChars=2) Returns 2 random CAPITAL letters.
27
28
_char = ''
29
for num in range(NoOfChars):
30
_char += random.choice(string.ascii_uppercase)
@@ -102,9 +102,9 @@ def StateCode():
102
103
104
def Full():
105
106
Returns a random First Name and Last Name combination
107
108
return ' '.join([First(), Last()])
109
110
0 commit comments