#!/usr/bin/env python1# coding: utf-823# # Creating and Using an External Class45# ## Developing the external class67# ### Defining the MyClass class89# In[1]:101112class MyClass:13def __init__(self, Name="Sam", Age=32):14self.Name = Name15self.Age = Age16def GetName(self):17return self.Name18def SetName(self, Name):19self.Name = Name20def GetAge(self):21return self.Age22def SetAge(self, Age):23self.Age = Age24def __str__(self):25return "{0} is aged {1}.".format(self.Name,26self.Age)272829# In[ ]:30313233343536