Facebook
From kush, 4 Years ago, written in Plain Text.
This paste is a reply to file handling 11 from kush - view diff
Embed
Download Paste or View Raw
Hits: 365
  1. import sys
  2. def myFun(n):
  3.     x=len(n)
  4.     for i in range(x//2):
  5.         if(n[i]!=n[x-i-1]):
  6.             print("Not a Lapindrome")
  7.             sys.exit()
  8.     print("Lapindrome")
  9. n=input()
  10. myFun(n)

Replies to file handling 12 rss

Title Name Language When
lists 8 kush text 4 Years ago.