private instance attribute python
# Square Class: Define a Square with private instance
class Square:
def __init__(self, size=0):
# initialise variables
self.__size = size
private instance attribute python
# Square Class: Define a Square with private instance
class Square:
def __init__(self, size=0):
# initialise variables
self.__size = size
private class method python
class Student:
def __init__(self):
pass
# The double underscore in the front makes it private
def __print_name(self):
return print("private")
# proof of use
def print_name(self):
return print("public")
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us