Listing 10 - Page 0: No Title

##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 10\10.1459 - No Title.py
# Description: No Title
##############################################################################

class Name:
    def __init__(self, name):
        if name is None or not name.strip():
            raise ValueError("Name cannot be null or blank")
        self.__name = name
    def get_name(self):
        return self.__name
    def set_name(self, value):
        self.__name = value
Click here to download the file