Как решить эту проблему: «IndexError: строковый индекс вне диапазона» - PullRequest
0 голосов
/ 24 февраля 2019

Я написал код Python, который дал мне «IndexError: строковый индекс вне диапазона».Пожалуйста, скажите мне, как это исправить.

actuallink = 'http://www.exxonmobilperspectives.com'
slashcounter = 0
indexslash = 0
while slashcounter < 3:
    if(actuallink[indexslash] == '/'):
        slashcounter = slashcounter + 1
    indexslash = indexslash + 1
    PLink = actuallink[:indexslash - 1]

Пожалуйста, помогите мне здесь.

PS.Я не знаю почему, но когда я изменяю ссылку на что-то еще, она отлично работает

Ответы [ 2 ]

0 голосов
/ 24 февраля 2019

Попробуйте:

actuallink = 'http://www.exxonmobilperspectives.com'
slashcounter = 0
indexslash = 0
while indexslash < len(actuallink):
    if(actuallink[indexslash] == '/'):
        slashcounter = slashcounter + 1
        print("Slash number {},Index ={}".format(slashcounter,indexslash))
    indexslash = indexslash + 1
    PLink = actuallink[:indexslash - 1]
print("Slashcounter = {}".format(slashcounter))

Результат:

Slash number 1,Index =5
Slash number 2,Index =6
Slashcounter = 2
0 голосов
/ 24 февраля 2019

Что-то вроде

actuallink = 'http://www.exxonmobilperspectives.com'
endPoint = len(actuallink.split('/')) - 1
if endPoint > 0:
    slashcounter = 0
    indexslash = 0
    while slashcounter < endPoint:
        if(actuallink[indexslash] == '/'):
            slashcounter = slashcounter + 1
        indexslash = indexslash + 1
        PLink = actuallink[:indexslash]
...