forked from bhupesh7shakya/python-magh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathipoSelector.py
More file actions
21 lines (19 loc) · 733 Bytes
/
Copy pathipoSelector.py
File metadata and controls
21 lines (19 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from random import randint as r
from random import choice
database = ['1122334455',
'1112223330',
'1234567890',
'2121212121',
'1234445566',
'1111111111',
'2223233333',
'1222222222',
'2345678907',
'1233455666'
]
num1=r(0,len(database)-1)
num2=r(0,len(database)-1)
print(f"Congrats!! demat number {database[num1]} has been alotted the IPO.")
print(f"Congrats!! demat number {database[num2]} has been alotted the IPO.")
# print(f"Congrats!! demat number {choice(database)} has been alotted the IPO.")
# print(f"Congrats!! demat number {choice(database)} has been alotted the IPO.")