-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom_data.py
39 lines (39 loc) · 1.1 KB
/
random_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import random
x = int(input("enter number of item(s) needed"))
if x <= 0:
print("Please eneter a postive number")
raise ValueError
print("ID date Time ")
for i in range(x):
id = i
if id < 10:
id = "0" + str(id)
year = random.randint(0,24)
if year < 10:
year = "20" + "0" + str(year)
else:
year = "20" + str(year)
if int(year) % 4 and not int(year) % 100 and int(year) % 400:
_is_leap = True
else:
_is_leap = False
month = random.randint(1,12)
if month in [1,3,5,7,8,10,12]:
day = random.randint(1,31)
elif month in [4,6,9,11]:
day = random.randint(1,30)
elif _is_leap:
day = random.randint(1,29)
else:
day = random.randint(1,28)
if month < 10:
month = "0" + str(month)
if day < 10:
day = "0" + str(day)
hour = random.randint(0,23)
if hour < 10:
hour = "0" + str(hour)
min = random.randint(0,59)
if min < 10:
min = "0" + str(min)
print(str(id) + " " + str(year) + ":" + str(month) + ":" + str(day) + " " + str(hour) + ":" + str(min))