Given an English text, write a function count_len to count the frequencies of words of given length. The test string is 'Life is short, you need Python', count_len(4) will return 2. 定义函数count_len统计输入的英文文本中参数给定长度的单词出现的次数。 输入:'Life is short, you need Python.' count_len(5)输出:1 count_len(4)输出:2
举一反三
- 对下面这段代码,分析正确的是( )。function count(){ var len=form1.text.value.length; alert(len);} A: count()函数的作用是取得当前文档中文本框的个数 B: count()函数的作用是取得当前文档中表单的个数 C: 这段代码有错误 D: count()函数的作用是统计用户输入文本框中的字符个数
- 下列Python字符串函数中,表示获得字符串长度的是() A: chr B: ord C: len D: count
- 对下面这段代码,分析正确的是( )。<;form name="form1">;<;input type="text" name="text" value="abcdeft">;<;/form>;<;script>;function count(){ var len=form1.text.value.length; alert(len);}<;/script>; A: count()函数的作用是取得当前文档中文本框的个数 B: count()函数的作用是取得当前文档中表单的个数 C: 这段代码有错误 D: count()函数的作用是统计用户输入文本框中的字符个数
- Python的内置函数( )可以返回列表、元组、字典、集合、字符串中的元素个数。 A: length B: len C: strlen D: count
- 下列各项中,属于文本函数的是______。 A: MAX B: LEN C: SUM D: COUNT