OOP in python version 3.5? [closed]

From https://docs.python.org/2/tutorial/classes.html :

The simplest form of class definition looks like this:

class ClassName:
    <statement-1>
    .
    .
    .
    <statement-N>

Leave a Comment