Skip to content

Commit 1cfb5e5

Browse files
committed
my python projects
1 parent 2bca0ab commit 1cfb5e5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Palindrome.py

+5
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)