通过创建密码学习字符串操作 - Step 27

告诉我们发生了什么:

这里提示给print()中加上第二个论点index并用comma隔开,谁能告诉我具体如何做,为什么我的操作是错误的

到目前为止你的代码


# User Editable Region

text = 'Hello World'
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'

for char in text:
    index = alphabet.find(char)
    print(char.index)

# User Editable Region

你的浏览器信息:

用户代理是: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0

挑战信息:

通过创建密码学习字符串操作 - Step 27

for char in text:
>>> index = alphabet.find(char) <<<
    print(char, variable)