When I type the following into Notepad++ as Python code:
days = "Mon"
print "Here are the days: %s ". % days
I get this output in Windows Powershell:
File "ex9exp.py", line 4
print "Here are the days: %s ". % days
I am at a loss as to why this is happening.
I intend for the output of
print "Here are the days: %s ". % days
to be
Here are the days: Mon
Would appreciate some help.