doctest: att kolla exempel automatiskt Hur ser man till att exempel är rätt? # This is the module "mymod" def add(x, y): """Add two numbers. Example: >>> add(17,42) 59 """ return x + y if __name__ == '__main__': import doctest, mymod doctest.testmod(mymod)