2022-10-19 08:28:58 -07:00

10 lines
213 B
Python

class Phrase:
"""A class to represent phrases."""
def __init__(self, content):
self.content = content
if __name__ == "__main__":
phrase = Phrase("Madam, I'm Adam.")
print(phrase.content)