The program supposed to take in two names, and if they are the same length it should check if they are the same word.
But i am getting below error in python
python typeerror: not all arguments converted during string formatting
The correct way to use traditional string formatting using the '%' operator is to use a printf-style format string (Python documentation for this here: http://docs.python.org/2/library/string.html#format-string-syntax):
https://github.com/getpelican/pelican/issues/2489