How do I know which version of reportlab I'm running?

I need to know which version of reportlab I'm running.

The following does not work.

import reportlab
print reportlab.__version__
+5
source share
1 answer

Can you try:

print reportlab.Version
+7
source

All Articles