I was able to come up with two different ways to reverse a string in Python.
Commonsense dictates that the more lines of code the slower it runs.
I made the following lines of code:
Code1
"".join(reversed(map(lambda x:x,st)))
Code2
st[::-1]
These give similar performance. For a 20000 long string I am not able to see a difference of even a millisecond in performance.
I think the first one should be a slower approach because it performs 3x more operations.
Question
Why am I not seeing a performance difference?