If this is the input:
This is an example line of text.
Then how can I get this output:
.txet fo enil elpmaxe na si sihT
If this is the input:
This is an example line of text.
Then how can I get this output:
.txet fo enil elpmaxe na si sihT
def my_function(x):
return x[::-1]
mytxt = my_function("I wonder how this text looks like backwards")
print(mytxt)