Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialqasimalbaqali
17,839 Points[SOLVED] IndexError: string index out of range
I am getting a IndexError: string index out of range
here is my code. I tripled check that it's the same as the teachers code but still I get this error.
Here is my code
user_string = input("What's your word? ")
user_num = input("What's your number? ")
try:
our_num = int(user_num)
except:
our_num = float(user_num)
if not '.' in user_num:
print(user_string[our_num])
else:
ratio = round(len(user_string)*our_num)
print(user_string[ratio])
EDIT: Never mind I got it. Silly me I used a small word and chose a big number.. That's why.
1 Answer
Oxana Nefedova
4,878 PointsYou are right. Look at the formula : ratio = round(len(user_string)*our_num). If you take float number - 0.1 and word - Lord Hamish (two spaces). you get back - letter. IndexError: string index out of range - it's mean that you take big float number