-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstringoccur.py
More file actions
11 lines (5 loc) · 922 Bytes
/
stringoccur.py
File metadata and controls
11 lines (5 loc) · 922 Bytes
1
2
3
4
5
6
a = " Dramatic advances in data capture, processing power, data transmission, and storage capabilities are enabling organizations to integrate their various databases into data warehouses. Data warehousing is defined as a process of centralized data management and retrieval. Data warehousing, like data mining, is a relatively new term although the concept itself has been around for years. Data warehousing represents an ideal vision of maintaining a central repository of all organizational data. Centralization of data is needed to maximize user access and analysis. Dramatic technological advances are making this vision a reality for many companies. And, equally dramatic advances in data analysis software are allowing users to access this data freely. The data analysis software is what supports data mining "
print a.count("data")
a = a.split()
for i in a:
print i,":", a.count(i), "ocorrencias", "\n"