Lesson 43: Checking Software Versions

Outdated software is a common vulnerability. Python can help check versions.

import platform
import sys

print("Python Version:", sys.version)
print("OS:", platform.system(), platform.release())

Knowing versions helps you keep systems up-to-date and secure.

Next Lesson →