Not sure How to fix this.
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(IM.dtype # prints image type)?
plt.figure(figsize=(60,30))
IM = mh.imread('TestNodose.png') # Loads in image
print IM.dtype # prints image type
pylab.imshow(IM) # shows image
pylab.gray() # makes it greyscale
pylab.show()
