├── 001_Python_File_Input_Output.ipynb ├── 002_Python_File_Directory.ipynb ├── 003_Python_File_Exception.ipynb ├── 004_Python_Exceptions_Handling.ipynb ├── 005_Python_User_defined_Exceptions.ipynb ├── LICENSE ├── README.md ├── countries_data.json ├── csv_example.csv ├── email_exchanges_big.txt ├── hacker_news.csv ├── img ├── dnld_rep.png ├── eh1.png ├── io1.png └── io2.png ├── json_example.json ├── romeo_and_juliet.txt ├── speech_barack_obama.txt ├── speech_donald_trump.txt ├── speech_melina_trump.txt ├── speech_michelle_obama.txt ├── support_words.py ├── test.txt ├── test_1.txt ├── test_2.txt ├── testfile.txt └── xml_example.xml /001_Python_File_Input_Output.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/001_Python_File_Input_Output.ipynb -------------------------------------------------------------------------------- /002_Python_File_Directory.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/002_Python_File_Directory.ipynb -------------------------------------------------------------------------------- /003_Python_File_Exception.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/003_Python_File_Exception.ipynb -------------------------------------------------------------------------------- /004_Python_Exceptions_Handling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/004_Python_Exceptions_Handling.ipynb -------------------------------------------------------------------------------- /005_Python_User_defined_Exceptions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/005_Python_User_defined_Exceptions.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/README.md -------------------------------------------------------------------------------- /countries_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/countries_data.json -------------------------------------------------------------------------------- /csv_example.csv: -------------------------------------------------------------------------------- 1 | name,country,city,skills 2 | Milaan,England,London,Python 3 | -------------------------------------------------------------------------------- /email_exchanges_big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/email_exchanges_big.txt -------------------------------------------------------------------------------- /hacker_news.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/hacker_news.csv -------------------------------------------------------------------------------- /img/dnld_rep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/img/dnld_rep.png -------------------------------------------------------------------------------- /img/eh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/img/eh1.png -------------------------------------------------------------------------------- /img/io1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/img/io1.png -------------------------------------------------------------------------------- /img/io2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/img/io2.png -------------------------------------------------------------------------------- /json_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/json_example.json -------------------------------------------------------------------------------- /romeo_and_juliet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/romeo_and_juliet.txt -------------------------------------------------------------------------------- /speech_barack_obama.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/speech_barack_obama.txt -------------------------------------------------------------------------------- /speech_donald_trump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/speech_donald_trump.txt -------------------------------------------------------------------------------- /speech_melina_trump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/speech_melina_trump.txt -------------------------------------------------------------------------------- /speech_michelle_obama.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/speech_michelle_obama.txt -------------------------------------------------------------------------------- /support_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/support_words.py -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/test.txt -------------------------------------------------------------------------------- /test_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/test_1.txt -------------------------------------------------------------------------------- /test_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/test_2.txt -------------------------------------------------------------------------------- /testfile.txt: -------------------------------------------------------------------------------- 1 | This is my test file for exception handling!! -------------------------------------------------------------------------------- /xml_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/05_Python_Files/HEAD/xml_example.xml --------------------------------------------------------------------------------