diff --git a/Python/reverse a string.py b/Python/reverse a string.py new file mode 100644 index 0000000..50cd17b --- /dev/null +++ b/Python/reverse a string.py @@ -0,0 +1,2 @@ +n='i am a good man' +print("".join(map(str,reversed(n))))