Systemy_DialogowePon15-30/view/View.py

13 lines
293 B
Python
Raw Normal View History

2021-04-26 13:31:00 +02:00
from presenter.Presenter import Presenter
def init_chat():
print('Witamy w systemie elektronicznej rezerwacji Biletów! W czym mogę pomóc?')
user_input = input()
result = Presenter().process_user_input(user_input)
print(result)
2021-04-26 13:31:00 +02:00
if __name__ == "__main__":
init_chat()