diff --git a/helpResponse.py b/helpResponse.py new file mode 100644 index 0000000..ff85258 --- /dev/null +++ b/helpResponse.py @@ -0,0 +1,16 @@ +def help_(): + help = [] + help.append("You start by greeting me (otherwise I wont reply) and after that you can type in your question and click the send button") + help.append("I will have to perform a search depending on your question.") + help.append("I cannot take too long to reply otherwise that means") + help.append("that there is a problem and you will need to contact the technical team to fix me") + help.append("If you have any problems please don’t hesitate to email the tech team to fix me: D3@uni.coventy.ac.uk.") + help.append("If it doesn't work.") + help.append("Try running it either in Idle 64-bit or 32-bit. ") + help.append("Also do: pip install six pip install pypiwin32 pip install pyomo if pip is not recognised - google it") + + help_resp ="" + for word in help: + help_resp += word + "\n" + return help_resp +