online python formatter and compiler

Solutions on MaxInterview for online python formatter and compiler by the best coders in the world

showing results for - "online python formatter and compiler"
Sophia
05 Jan 2021
112345678910111213141516171819class BaseConnection:    def _init_(self, credentials):        self.rs_connection = RedshiftConnection(credentials)    def set_timeout(self, timeout=10):        self.rs_connection.timeout = timeout        class MyDBConnection(BaseConnection):    def _init_(self, credentials):        self.rs_connection = RedshiftConnection(credentials)        super.__init__(self, credentials)            def set_timeout(self, timeout=20):        self.rs_connection.timeout = timeoutcredentials = {'username''user1''password''pass1'}my_db_conn = MyDBConnection(credentials)my_db_conn.set_timeout()print(my_db_conn.rs_connection.timeout)X