Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
GroupD3/helpResponse.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
16 lines (14 sloc)
884 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |