定义一个函数来判断单词m是否可以由字符串n中出现的字母来组成
时间: 2023-05-19 10:03:09 浏览: 302
python 函数 单元作业
可以使用Python中的Counter模块来实现这个函数:
```python
from collections import Counter
def can_construct(n, m):
n_count = Counter(n)
m_count = Counter(m)
for char in m_count:
if char not in n_count or m_count[char] > n_count[char]:
return False
return True
```
这个函数会返回一个布尔值,表示单词m是否可以由字符串n中出现的字母来组成。如果可以,返回True,否则返回False。
阅读全文