expert-system

Expert system in Python with certain order of questions

Expert system in Python with certain order of questions Question: I need to create expert system and I have one question. I’m using experta from Python and 3.8.0 is my version of Python interpreter in PyCharm. Here is my simple code: from experta import * class Greetings(KnowledgeEngine): @DefFacts() def _initial_action(self): yield Fact(action="greet") yield Fact(action="info") @Rule(Fact(action=’greet’), …

Total answers: 1