Using datetime can be problematic because it's the name of both the package and the class. I'd suggest you try:
from datetime import datetime datetime.strftime(format)
This comment is hidden because it contains spoiler information about the solution
From the description:
Attention: If the number has leading zeros the amount of digits should be considered.
I assume that means that the resulting incremented number should have the same amount of digits.
It's easy to miss details like that.
Loading collection data...
Using datetime can be problematic because it's the name of both the package and the class.
I'd suggest you try:
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
From the description:
I assume that means that the resulting incremented number should have the same amount of digits.
It's easy to miss details like that.