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