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, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70)
while I'd like it to print
(700, 700)
Is any way there to do this without having to write
print (10 * img.size[0], 10 * img.size[1])
PS: img.size is a PIL image. Dunno if that matters anything in this case.