Potentially useful code snippets
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import model, view, controller |
|
|
|
bp=['alpha', 'gamma', 'Deutschland', 'failure'] |
|
v=view.View() |
|
m=model.Model('initial','population') |
|
c=controller.Controller(m,v) |
|
|
|
c.update(bp) |
|
c.expunge(bp) |
|
c.update('This', 'works') |
|
c.display()
|
|
|