use_relu=0 use_tanh=2 a = 2 if use_relu else (1 if use_tanh else 0)#如果use_relu不等于0,则a等于2;如果use_relu等于0,看use_tanh是否等于0,如果不等于0,则a等于1,否则a等于0