Skip to main content

Package palindromus helps you to check that any string, word or text are palindrome

Project description

Palindromus documentation

See at https://palindromus.readthedocs.io

Overwiew

Package helps you to check that any string, word or text are palindrome.

Checking

Check any strings:

from palindromus import *

somestr = """Ной и вера - шанс у Сиона
но Исус на шаре - Вийон"""

r = check(somestr)
print(r) # True

Check any words:

from palindromus import *

someword = "топот"

r = check(someword, check = WORD)
print(r) # True

Check any multiline palindrome:

from palindromus import *

somemultiline = """Ад - жажда!
Ад - жар, вражда!
Ад гонит иногда."""

r = check(somemultiline, check = MULTILINE)
print(r) # True

Check any text:

from palindromus import *

sometext = """Я нем и рад я,
так, трамвай,
январь равняй,
а в март катя,
дари меня."""

r = check(sometext, check = TEXT)
print(r) # True

Check any superpalindrome:

from palindromus import *

sometext = "Nora. Omar. Ramo. Aron"

r = check(sometext, check = SUPER)
print(r) # True

Global settings

You can use global variablies STRING, WORD, TEXT, MULTILINE, SUPER for checking any your strings as string, word, text, multiline palindrome or superpalindrome.

You can use dictionaries of interchangeable letters (ALL, RUSSIAN, LATIN) for interchange.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

palindromus-1.0.3.tar.gz (6.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page