I had done a bit of Python long back. I am however moving over to Java now. I wanted to know if there were any differences between the Python \"self\" method and Java \"this
From my perspective, the most obvious difference is that in java class, in the constructor, you need to specify the field
this.radius = radius
While in the python code, you don't have to do so, it's implicit.