Hello I have a simple problem using Python but I don't achieve to solve it.
Here is my problem :
a = '2020-06-15'
a = a[::-2] + "01" # according to me with this a = '2020-06-01'
But when I printed a I get : '100101' for the value of a...
Could you help me please ?
Thank you !