It is often useful to obtain version info inside Python. Requesting version variables as shown below: ```python __version_info__ = (5, 3, 1) __version__ = '.'.join(map(str, __version_info__)) ```
It is often useful to obtain version info inside Python. Requesting version variables as shown below: