📚 The CoCalc Library - books, templates and other resources
1class Defect(): 2 ''' Defect will always defect. ''' 3 def step(self, history, round): 4 action = 0 5 6 return action 7