differentmatt / filbert

JavaScript parser of Python
Other
133 stars 27 forks source link

Python lists don't have .push method #81

Open Bryukh opened 8 years ago

Bryukh commented 8 years ago

The next statement works in CoCo:

ar = []
ar.push(1)

But python lists have .append method and don't have .push method.

kyay10 commented 6 years ago

so do you mean that .push should be .append or that we need to add .push to codecombat python???