mirror of
https://github.com/kennethreitz/empartations.git
synced 2026-06-05 23:00:19 +00:00
18 lines
407 B
Python
18 lines
407 B
Python
import system_777
|
|
from system_777.numbers import (
|
|
calculate_gematria,
|
|
find_words,
|
|
find_phrases,
|
|
GematriaSystem,
|
|
)
|
|
|
|
|
|
NAME = "SHEKINAH"
|
|
SYSTEM = GematriaSystem.Hebrew
|
|
GEMATRIA_VALUE = calculate_gematria(NAME, system=SYSTEM)
|
|
|
|
print(f"The gematria value of the name '{NAME}' is {GEMATRIA_VALUE}.")
|
|
|
|
print("Possible words with the gematria value of the name:")
|
|
print(find_words(GEMATRIA_VALUE))
|