#!/usr/bin/python
import os
import shutil
import commands
import time
import copy
name = 'test'
echo name
I have a simple python scripts like the above. When I attempt to execute it I get a syntax error when trying to output the name variable.
echo) to be supported just like that in Python as if it was a recognized Python statement?echois not a keyword and it expects something else to happen after a possible variable name (for example an assignment).