Skip to content

Instantly share code, notes, and snippets.

@JeffersGlass
Created December 3, 2020 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JeffersGlass/e2ceed37a5b459304216389328854e87 to your computer and use it in GitHub Desktop.
Save JeffersGlass/e2ceed37a5b459304216389328854e87 to your computer and use it in GitHub Desktop.
myList = ['a', 'b', 'c', 'd', 'e']
#Throws TypeError: list indices must be integers or slices, no float:
print (myList[4/2])
#Works fine:
print (myList[int(4/2)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment