example at command line linux
echo fc67e62b625f33d7928fa1958a38a353085f0097cc22c08833850772035889b8 | grep -o .. | tac | paste -sd '' -
I try find how do this at python but notting . what i am trying to do - i try reverse every line at text by this rule. Only what i find is
txt = "Hello World"[::-1]
print(txt)
example ABCDEF
echo ABCDEF | grep -o .. | tac | paste -sd '' -
will give EFCDAB
this
txt = "ABCDEF"[::-1]
print(txt)
return FEDCBA
-1. This tells us to start at the end.