6 lines
120 B
Python
6 lines
120 B
Python
import random
|
|
|
|
class InvestorPredictor():
|
|
def is_investor(user: User) -> bool:
|
|
return random.random() < 0.5
|