EDIT: Let me clarify: you define this constant once in your module? In that case it will not change; you have to update the name binding every time you want to write a file. An easy way to do this is to write a little function get_name which will generate the new name every time you call it.
The reason the string doesn't change is that if this code is at module level (no indents) then it will only be executed once, at the time that the module is executed. It won't change after that.
This is a separate issue from the immutability of strings.
When this line is executed, the interpreter will look up the system time, format it according to the string argument of strftime, and store the value in the variable.
There is an important point to make here, about name binding in Python. Consider the line
foo = 1
You may wonder what happens behind-the-scenes here. When the interpreter sees this line, it does two things:
- It creates an integer object and stores it in an internal table somewhere.
- It "binds" the name
foo to this object; in other words, it records the fact that foo means this object in an internal table somewhere.
The important point is that foo is just a name for the object we might call 1. In particular, you can make foo a name for something else by rebinding it, say foo = 2. But you can't change 1!
In exactly the same way, you can't change the datetime string you might create. That object is immutable. But you can make names point to different strings or indeed any type of different object!