import sys def isAlly(ally): return 0 def isEnemy(enemy): if enemy == 'gungan' or enemy == 'trade_federation' or enemy == 'jabba': return 1 return 0