📅  最后修改于: 2023-12-03 15:41:47.119000             🧑  作者: Mango
本程序用于判断给定的字符串是否为回文字符串,回文字符串即正反读都相同的字符串。
palindrome.py
到本地文件夹。from palindrome import is_palindrome
# 判断 "level" 是否为回文字符串,输出 True
print(is_palindrome("level"))
# 判断 "hello" 是否为回文字符串,输出 False
print(is_palindrome("hello"))
def is_palindrome(str: str) -> bool:
"""
判断给定的字符串是否为回文字符串。
Args:
str: 给定的字符串。
Returns:
若 str 是回文字符串,返回 True,否则返回 False。
"""
下面是一些示例输入及其对应的输出:
| 输入 | 输出 |
| --- | --- |
| level
| True
|
| hello
| False
|
| A man a plan a canal Panama
| True
|