From 7bcee9b93655980722e43be0f769ec27cea4193c Mon Sep 17 00:00:00 2001 From: "exercism-solutions-syncer[bot]" <211797793+exercism-solutions-syncer[bot]@users.noreply.github.com> Date: Tue, 14 Jul 2026 16:49:33 +0000 Subject: [PATCH] [Sync Iteration] python/reverse-string/1 --- solutions/python/reverse-string/1/reverse_string.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 solutions/python/reverse-string/1/reverse_string.py diff --git a/solutions/python/reverse-string/1/reverse_string.py b/solutions/python/reverse-string/1/reverse_string.py new file mode 100644 index 000000000000..29f0a9e5265a --- /dev/null +++ b/solutions/python/reverse-string/1/reverse_string.py @@ -0,0 +1,3 @@ +def reverse(text): + return(text[::-1]) + pass