Я написал этот простой код:
alpha=float(input('For the MC Test for the mean define alpha (0.10 and 0.05 only available at the moment): '))
if alpha!=0.05 or alpha!=0.10:
while True:
print('Please insert a value equal to 0.05 or 0.10')
alpha=float(input('For the MC Test for the mean define alpha (0.10 and 0.05 only available at the moment): ')
else:
print('MC test will control the FWER at exactly {}% (balanced test)'.format(alpha))
Однако он создает al oop, в котором, даже когда я набираю 0.05, он снова просит вставить альфа. Буду признателен за ваши комментарии. Спасибо.