如何通过数组获取输入变量,并读取输出变量

时间:2017-10-05 03:16:35

标签: python

例如我有

commandz=[["yes","no"],["hi","hi"]]
async def handle_command(message):
    print('Noticed: ' + message.content)
    if message.content == 'tokenreset'+str(key):
        await client.send_message(message.channel, 'code accepted')
    i = 0
    for i in commandz[i][0]:
        comm = commandz[i][0]
        if comm == message.content:
            await client.send_message(message.channel, commandz[i][1])

我收到的错误消息是

C:\Users\trisimix>python "c:\Users\trisimix\compsocbot\main.py"
Found saved token in stored.py, use phrase tokenreset1424629785956179 to undo this.
Logged in as[198866998225141760]NOTAKOALAONACOMPUTERINVENEZUELA
--------
Noticed: hi
Ignoring exception in on_message
Traceback (most recent call last):
  File "C:\Users\trisimix\AppData\Local\Programs\Python\Python36\lib\site-packages\discord\client.py", line 307, in _run_event
    yield from getattr(self, event)(*args, **kwargs)
  File "c:\Users\trisimix\compsocbot\main.py", line 34, in on_message
    await handle_command(message)
  File "c:\Users\trisimix\compsocbot\main.py", line 42, in handle_command
    comm = commandz[i]
TypeError: tuple indices must be integers or slices, not str

我试图让我的程序使用if语句检查每个命令对数组,然后用输出进行响应。

1 个答案:

答案 0 :(得分:0)

从代码的第6行开始(即for循环):

for comm in commandz:
    if comm[0] == message.content:
        await client.send_message(message.channel, comm[1])

您的代码的问题在于您循环遍历字符串的字符(在commandz[0][0]中),而您实际想要的是循环遍历嵌套列表中的列表(即["yes","no"]["hi","hi"],只是commandz

请注意,我使用变量comm作为commandz中的列表,而不是这些列表中的第一个索引,即我认为的yeshi你打算用它作为