From Python To Java (Part 4) — Lists (Python) VS ArrayLists (Java)

Liu Zuo Lin
4 min readDec 19, 2021

This series of articles is written for those of you who are somewhat comfortable in Python, and are looking to pick up some Java. In this article, we’ll run through lists in Python and the differences against ArrayLists in Java, which is essentially the equivalent of a Python list.

Creating A List/ArrayList

--

--