Write a Python program to find the occurrences of 10 most common words in a given text.
- برمجة
- برمجة بايثون
- 2021-04-16
- salsabeelalhams99111801528
الأجوبة
from collections import Counter
import re
text = """The Python Software Foundation (PSF) is a 501(c)(3) non-profit
corporation that holds the intellectual property rights behind
the Python programming language. We manage the open source licensing
for Python version 2.1 and later and own and protect the trademarks
associated with Python. We also run the North American PyCon conference
annually, support other Python conferences around the world, and
fund Python related development with our grants program and by funding
special projects."""
words = re.findall('\w+',text)
print(Counter(words).most_common(10))أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال