编写一个pythone程序 要求输入一个字符串 要判断字符串是否为回文 如果字符串是回文 输出该字符串是回文 如果字符串不是回文 统计并输出字符串每个字符出现的次数
时间: 2024-11-12 12:08:38 浏览: 10
PHP判断一个字符串是否是回文字符串的方法
5星 · 资源好评率100%
当你需要编写Python程序来判断一个字符串是否为回文,并统计非回文字符串中每个字符的出现次数,可以按照以下步骤来实现:
```python
def is_palindrome(s):
# 判断字符串是否为回文
return s == s[::-1]
def count_chars(s):
# 统计每个字符出现的次数
char_count = {}
for char in s:
if char in char_count:
char_count[char] += 1
else:
char_count[char] = 1
return char_count
# 输入字符串
input_string = input("请输入一个字符串:")
if is_palindrome(input_string):
print(f"{input_string} 是回文")
else:
print(f"{input_string} 不是回文")
# 输出字符及其频率
for char, count in count_chars(input_string).items():
print(f"字符 {char} 出现了 {count} 次")
#
阅读全文