This repository has been archived on 2023-12-31. You can view files and clone it, but cannot push or open issues or pull requests.
Considition-2020/launcher.py
2020-10-06 12:16:19 +02:00

8 lines
253 B
Python

import main
number_of_launches = 6
result_list = []
for i in range(number_of_launches):
result_list.append(main.main())
for result in result_list:
print("Game " + result[0] + " had a score of: " + str(result[1]))
input("Press Enter to exit")