10 lines
207 B
Python
10 lines
207 B
Python
import random
|
|
|
|
|
|
class CompanyFactory:
|
|
def __init__(self):
|
|
self.popularity = random.randint(0,5)
|
|
self.payment_delay = random.randint(0,5)
|
|
self.shipping_type = random.randint(0,1)
|
|
|