Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download
Views: 924
def assignment_one(): @interact def thing(a=input_box(default=0, label='assignment 1')): show(a + 1) def assignment_two(): @interact def another_thing(b=input_box(default=0, label='assignment 2')): show(b * 2) # assignment_one() #just comment/uncomment here instead assignment_two()
Interact: please open in CoCalc
Interact: please open in CoCalc