To start, you need to make sure the command line application you are using has access to your Python installation. To do this, open the command prompt, type python and press ‘Enter’. You should see a message that documents the Python version that is being used followed by >>>, which indicates the next code you type will be executed by the Python interpreter. It will look something like this.
c:UsersComputer_name>
Type python and press Enter
c:UsersComputer_name>python
some python compatability details will show
Then execute a simple print command to test it
>>>
for example
>>>print<'Hello Earthlings'>
Hello Earthlings
So, this is a basic programme to print the data inside the quotation
Thank you
Ryderjerome