Cada jogo pode ser chamado individualmente, assim como ser convocado a partir do código abaixo:
# Py simple games: introduction to Python and PyCharm
# Libraries used:
import gallows
import guessing
# Introduction:
print("*****************************")
print("******Choose your game!******")
print("*****************************")
print("(1) to Gallows games or (2) to Guessing Game")
my_game = int(input("Which game? "))
if my_game == 1:
print("Playing Gallows Game")
gallows.play_game() # Applying the function
elif my_game == 2:
print("Playing Guessing Game")
guessing.play_game()