Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codersales/msc-y1-s1-python-final-project
MSc-Y1-S1-python-final-project
https://github.com/codersales/msc-y1-s1-python-final-project
2023 assignment final-project msc msc-y1 msc-y1-s1 python
Last synced: about 5 hours ago
JSON representation
MSc-Y1-S1-python-final-project
- Host: GitHub
- URL: https://github.com/codersales/msc-y1-s1-python-final-project
- Owner: CoderSales
- License: mit
- Created: 2023-11-14T14:53:41.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2023-12-14T12:52:05.000Z (11 months ago)
- Last Synced: 2023-12-15T12:28:13.708Z (11 months ago)
- Topics: 2023, assignment, final-project, msc, msc-y1, msc-y1-s1, python
- Language: Python
- Homepage:
- Size: 188 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MSc-Y1-S1-python-final-project
## Description
MSc-Y1-S1-python-final-project
## Content
### Most Current version of file
`main2.py`
present in
submission2 folder
### Purpose
## References
### Language
#### Dolch Word lists
##### English
Google Search String: dolch list | [Dolch Word List – 220 High Frequency Sight Words](https://www.sess.ie/sites/default/files/Resources/Cirricular_Material/DolchWord_List_220.pdf)
##### French
[1000 MOST COMMON FRENCH WORDS – FREQUENCY VOCABULARY TO SPEAK IN A SNAP](https://strommeninc.com/1000-most-common-french-words-frequency-vocabulary/)
##### German
[1000 MOST COMMON GERMAN WORDS – FREQUENCY VOCABULARY](https://strommeninc.com/1000-most-common-german-words-frequency-vocabulary/)
##### Spanish
[1000 MOST COMMON SPANISH WORDS – FREQUENCY VOCABULARY](https://strommeninc.com/1000-most-common-spanish-words-frequency-vocabulary/)
##### Italian
[1000 MOST COMMON ITALIAN WORDS](https://1000mostcommonwords.com/1000-most-common-italian-words/)
### Source Texts (Wikipedia) [accessed Tuesday 2023-11-21-at-1421hours]
#### English
sourceEnglish.txt | [Wikipedia](https://en.wikipedia.org/wiki/Wikipedia)
#### French
sourceFrench.txt | [Wikipédia](https://fr.wikipedia.org/wiki/Wikip%C3%A9dia)
#### German
sourceGerman.txt | [Wikipedia](https://de.wikipedia.org/wiki/Wikipedia)
#### Spanish
sourceSpanish.txt | [Wikipedia](https://es.wikipedia.org/wiki/Wikipedia)
#### Italian
sourceItalian | [Wikipedia](https://it.wikipedia.org/wiki/Wikipedia)
#### Approach
Google Search: how to do language detection basic | [How can we detect a language?](https://towardsdatascience.com/how-to-do-language-detection-using-python-nltk-and-some-easy-statistics-6cec9a02148)
### Code
Code:
```python
f = open("demofile.txt", "r")
print(f.read())
```[Python open() Function](https://www.w3schools.com/python/ref_func_open.asp)