getsizeof
-
Hello,
I am using LoPy with Pysense. One simple question about getting the size of a variable.
import sys
print(sys.getsizeof("This"))Would give me the size. somehow this doesn't work with LoPy. Any suggestions or any other easier way to get the size of a variable?
Regards,
sameer
-
@sameerchouksey sys.getsizeof() is not implemented in micropython. For strings and arrays, len() may give you a useful response, depending on your needs.