Here's my code:
TestV = int(input("Data: "))
print TestV
print len (TestV)
In fact, it prints TestV
but when I try to get its length it gives me the error "len() of unsized object"
I've try something easier like
>>> x = "hola"
>>> print len(x)
4
and it works perfectly. Can anyone explain to me what am I doing wrong?