Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
class Defect():
2
''' Defect will always defect. '''
3
def step(self, history, round):
4
action = 0
5
6
return action
7