/Python-Labs

Primary LanguagePythonMIT LicenseMIT

EASY

EXO 1 : write_text_to_texfile.py: Create a function implementing > Save text into a filename. arguments (string_text, dest)

EXO 2 : words_unique.py: Create a function implementing > Find unique words in a string arguments (string_text) Returns list of all unique words

EXO 3: wordcount.py: Create a function implementing: > Find the number of words in a textile (text_file_path) Returns number

EXO 4: word_frequency.py: Create a function implementing > Find the frequency of words in a textile (text_file_path) Returns words,freq

EXO 5: sum_of_2_elements.py: Create a function implementing > Find the sum of 2 numbers (a,b) Returns sum_value

MEDIUM (new notion)

EXO 6: sum_of_any_elements.py Create a function implementing > Find the sum of any numbers (a,b,c,d) or (a,b) or (a,b,c,d,e,f)... Returns sum_value

EXO 7: Create the FileToolBox.py Create a class implementing > Class with init (file_name, user_name) And implement all functions above :)