-
Notifications
You must be signed in to change notification settings - Fork 1
/
help.py
31 lines (29 loc) · 1.08 KB
/
help.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
def helper(username):
result = """
Welcome {}, I am Excel, a Bot I have some features
Main usage:
==========
(TRANSLATIONS)
ENGLISH --- > TAMIL
TAMIL --- > ENGLISH
If you provide a single english word it gives meaning of a word as Noun,Verb,Adjective,Adverb and tamil meaning
-----------------------------------------
Some additional features:
========================
Any number convert to words of that number
(ex: 100 gives one hundread)
* your_name ==> Gives Expand form of your name and its describe your character
(ex: * dhoni)
# name_1 name_2 ==> Gives FLAMES between name_1 and name_2
(ex: # dhoni virat)
-----------------------------------------
About:
=====
/developer ==> Gives the name of this Bot developer
/name ==> Gives the name of this bot
/username ==> Gives the username of this bot
/help ==> To see the Descriptions
""".format(
username
)
return result