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

8 lines
249 B
Python
Raw Normal View History

import main
2020-10-07 00:43:39 +02:00
number_of_launches = 4
result_list = []
for i in range(number_of_launches):
result_list.append(main.main())
for result in result_list:
2020-10-06 12:16:19 +02:00
print("Game " + result[0] + " had a score of: " + str(result[1]))
2020-10-07 00:43:39 +02:00
input("Press Enter to exit")