From 3ebe1e6080dcae166d0068aa6dfc541ea38cf0ee Mon Sep 17 00:00:00 2001 From: "Saeed Issaka (issakas)" Date: Thu, 23 Nov 2017 21:17:10 +0000 Subject: [PATCH] Add files via upload help menu (instructions code) --- helpResponse.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 helpResponse.py 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 +