df.tips
How to check which version of Python is installed?
Python
python
dmitrii_fediuk
(Dmitrii Fediuk)
April 24, 2019, 6:53pm
1
import sys print(sys.version)
stackoverflow.com/a/1093331
dmitrii_fediuk
(Dmitrii Fediuk)
April 24, 2019, 7:01pm
2
Another way:
python -V