Tue Jul 12 07:29:14 2022 duel_simulation_test(): Python version: 3.6.9 Test duel_simulation() duel_once_test(): duel_once() simulates a single duel between combatants who fire alternately at each other, with known probabilities of hitting the other. In this example, the one shot probabilities are: Player[0]: 0.1 Player[1]: 0.15 Result of this duel: Player 0 survived after 9 turns duel_many_test(): duel_many() simulates many duels between combatants who fire alternately at each other, with known probabilities of hitting the other. In this example, the one shot probabilities are: Player[0]: 0.1 Player[1]: 0.15 The number of duels to fight is 1000 Result of the duels: Player 0 winning percentage is 0.44 Player 1 winning percentage is 0.56 The average number of shots fired was 7.858 duel_simulation_test(): Normal end of execution. Tue Jul 12 07:29:14 2022