Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
import random
2
3
class 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