We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bca0ab commit 1cfb5e5Copy full SHA for 1cfb5e5
Palindrome.py
@@ -0,0 +1,5 @@
1
+string = 'alula'
2
+c = list(string)
3
+a = list(reversed(c))
4
+if a == c:
5
+ print string
0 commit comments