Python Basic Program

Post date: Jan 31, 2018 6:45:04 AM

#Write a Python program to get the Python version you are using.

import sys

print("Python version")

print (sys.version)