# This script is used to test if the Anaconda environment is working properly

# Import the sys module. It comes with Python, so no need to install it
import sys

# Print the version of Python and the path to the Python executable
print(sys.version)
print(sys.executable)