I have the following code:
print(img.size) print(10 * img.size)
This will print:
(70, 70) (70, 70, 70, 70, 70, 70, 70, 70,
You can try something like this:
print [10 * s for s in img.size]
It will give you a new list with all the elements you have in the tuple multiplied by 10