Errol/main.py
2021-02-25 01:27:26 +01:00

12 lines
174 B
Python

from src.errol import Errol
print('loading...')
errol = Errol()
sentence = ''
while sentence != 'exit':
sentence = input("oui ?")
print(errol.answer(sentence))