We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2bee23 commit b2b366fCopy full SHA for b2b366f
maths/is_string_palindrome.py
@@ -4,5 +4,5 @@ def is_string_palindrome(words: str) -> bool:
4
5
6
if __name__ == "__main__":
7
- word = input("Enter a word:-")
8
- print(is_string_palindrome(word))
+ import doctest
+ doctest.testmod()
0 commit comments