Artificial intelligent assistant

PythonのpulpプログラムのWelcomeメッセージを出力しない方法を教えて下さい。 ()2010 2 < < import pulp x = pulp.LpVariable("x",0,10,"Continuous") y = pulp.LpVariable("y",0,10,"Continuous") # problem = pulp.LpProblem("test",pulp.LpMaximize) problem = pulp.LpProblem("test",pulp.LpMinimize) problem += 2*x + y problem += 4*x+y <= 9 problem += x+2*y >= 4 problem += 2*x-3*y >= -6 problem.solve() print(x.value(),y.value(),2*x.value() + y.value()) # #Welcome to the CBC MILP Solver #Version: 2.9.0 #Build Date: Feb 12 2015 # () #0.0 2.0 2.0

problem.solve()





problem.solve(pulp.PULP_CBC_CMD(msg = False))


Welcome

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy b10fcd01e04d03143739cb0fd347aa11