Skip to content
Permalink
Browse files
Add files via upload
help menu (instructions code)
  • Loading branch information
issakas committed Nov 23, 2017
1 parent a52c3dc commit 3ebe1e6080dcae166d0068aa6dfc541ea38cf0ee
Showing 1 changed file with 16 additions and 0 deletions.
@@ -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

0 comments on commit 3ebe1e6

Please sign in to comment.