I'm trying to write code efficiently that does something like this:
if (str == "Sunday"):
return "Today is Sunday. Have a good day."
or
if (str == "Monday")
return "Today is Saturday. Have a good day."
etc..
Is there a way to set the standard string with a variable {} and then assign the variable later on the script - without having to repeat the string 7 times?