Using this script:
color = 'blue'
def say_color(color):
print 'The color is: ' + color
say_color()
Here, I am trying to allow say_color to be processed without passing an argument, and the result being the default color (blue). However, if a color is specified, it will not use blue and use the string given instead.
How is this done?