Answers for "int object is not subscriptable python"

1

int object is not subscriptable in python

"""
This error means the variable you want to subscript is an integer.

if you want to subscript an int, a way of doing that is turning it to str.
"""
num = 1234
x = num[2]  # does not work
x = int(str(num)[2])  # works, x = 3
Posted by: Guest on August-20-2021
0

python object is not subscriptable

Youre trying to access an object incorrectly.  I.E. You think youre accessing a list inside a list when in fact its actually a dictionary inside a list
Posted by: Guest on August-04-2021

Code answers related to "int object is not subscriptable python"

Python Answers by Framework

Browse Popular Code Answers by Language