10 lines
213 B
Python
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)
|