📚 The CoCalc Library - books, templates and other resources
1import random 2 3class Trustworthy(): 4 ''' Will hopefully pose as trustworthy to other prisoners 5 ''' 6 def step(self, history, round): 7 if round%5 == 4: 8 return 0 9 else: return 1 10