• + 0 comments

    This is my code

    import re
    text=str(input())
    
    for i in re.split("(?<=[.!?\"]) +", text):
        print(i)