# /var/www/py/helloworld.py ***************************************************
# Created by: HARB rboek2@gmail.com august 2018 GPL copyrights                
# Prepaired and optimized for use with Python 3


# IMPORT LIBRARIES install like: pip install --upgrade psycopg2 --user ********
import platform                        #needed to check if we are using Python3

python_version=platform.python_version()                #Actual version request
print ("De gebruikte versie van Python is:", python_version)      #Show to user

print("Hello, World!")
