python编写函数实现统计并返回任一英文字符串中单词的个数。在主程序输入一个字符串,调用该函数并输出单词个数。
时间: 2023-05-24 12:07:37 浏览: 371
以下是Python的实现代码:
```python
def word_count(text):
# 使用split函数将字符串按空格分割成列表
words = text.split()
# 统计列表长度即单词个数
count = len(words)
# 返回单词个数
return count
# 主程序
text = input("请输入一个英文字符串:")
count = word_count(text)
print("单词个数为:", count)
```
测试:
输入:"The quick brown fox jumps over the lazy dog."
输出:单词个数为: 9
相关问题
python编写函数,统计任一字符串中数字和英文字母的个数并返回。在主程序输入一个字符串,调用该函数并输出其返回值。
```python
def count_chars_and_digits(input_str):
chars_count = 0
digits_count = 0
for char in input_str:
if char.isalpha():
chars_count += 1
elif char.isdigit():
digits_count += 1
return [chars_count, digits_count]
input_str = input("请输入一个字符串:")
result = count_chars_and_digits(input_str)
print("字符串中英文字母的个数为{},数字的个数为{}".format(result[0], result[1]))
```
输入示例:
```
请输入一个字符串:hello1world2
```
输出示例:
```
字符串中英文字母的个数为10,数字的个数为2
```
输入任一字符串,输出一英文串中长度最长的所有单词,将这些单词按在字符串中出现的顺序放在一元组中
好的,可以使用以下代码实现:
```python
def longest_words(text):
# 将文本中的标点符号替换为空格
for p in [",", ".", "!", "?", ";", ":", "(", ")", "[", "]", "{", "}", "'", "\"", "\\", "/", "*", "&", "^", "%", "$", "#", "@", "+", "-", "=", "<", ">", "|", "~"]:
text = text.replace(p, " ")
# 将文本按空格分割成单词列表
words = text.split()
# 找到最长的单词长度
max_length = max(len(word) for word in words)
# 找到所有长度为最长单词长度的单词
longest_words = [word for word in words if len(word) == max_length]
# 返回按出现顺序排列的最长单词列表
return tuple(longest_words)
text = input("请输入一个字符串:")
print(longest_words(text))
```
这里使用了一个循环来将字符串中的常见标点符号替换为空格,然后再按空格分割成单词列表。如果输入的字符串中还有其他特殊情况需要考虑,可以根据具体情况进行修改。
阅读全文