用于处理彩票的大数据算法
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
264 B

from blue_forecast import forecast_blue
from red_forecast import red_forecast, red_forecast_with_same
from real_index import update_real_data
if __name__ == "__main__":
update_real_data()
forecast_blue()
# red_forecast()
red_forecast_with_same(2)