Skip to content

Instantly share code, notes, and snippets.

View victor-iyi's full-sized avatar
🎯
Focusing

Victor I. Afolabi victor-iyi

🎯
Focusing
View GitHub Profile
@victor-iyi
victor-iyi / sentence.py
Created March 27, 2019 17:12
A simple iterable sentence class.
class Sentence(str):
"""A simple iterable sentence class.
Methods:
def __init__(self, text): ...
def __repr__(self): ...
def __str__(self): ...