7 lines
122 B
Python
7 lines
122 B
Python
class Phrase:
|
|
"""A class to represent phrases."""
|
|
|
|
if __name__ == "__main__":
|
|
phrase = Phrase()
|
|
print(phrase)
|