python from java.util import ArrayList arrayList = ArrayList() arrayList.add("Hello") arrayList.add("World") for element in arrayList: print element