The next statement works in CoCo: ``` ar = [] ar.push(1) ``` But python lists have `.append` method and don't have `.push` method.
The next statement works in CoCo:
But python lists have
.appendmethod and don't have.pushmethod.