├── .gitignore ├── Data ├── AirQualityUCI.csv ├── AirQualityUCI.xlsx ├── AirQualityUCI.zip ├── Corr2020.pdf ├── Corr2020.png ├── Daily_Demand_Forecasting_Orders.csv ├── adult.csv ├── adult_names.txt ├── bank_1.csv ├── bank_2.csv ├── covid_data.csv ├── data_types.names ├── description.txt ├── emp_data │ ├── __init__.py │ └── emp_db.py ├── first_text_file.txt ├── name_i_want.csv ├── name_i_want.xlsx ├── review.txt ├── review_modified.txt ├── second_text_file.txt ├── stock_px.csv ├── totals.csv ├── type_1.csv ├── type_2.csv ├── urg_1.csv └── urg_2.csv ├── Excercises ├── By Topic │ ├── Data Types │ │ ├── Data Tyes_Q.ipynb │ │ └── Data Tyes_QA.ipynb │ ├── Lists │ │ ├── Lists_Q.ipynb │ │ └── Lists_QA.ipynb │ └── Strings │ │ ├── String_Q.ipynb │ │ └── String_QA.ipynb └── Exercise.ipynb ├── Images ├── Screenshot 2019-05-08 at 23.21.11.png ├── adv_pandas.png ├── assertion.png ├── baby.svg ├── bicocca.png ├── data_types.jpeg ├── dataframe.png ├── exception.png ├── for_loop.png ├── fun_lambda.png ├── function.png ├── function_detail.png ├── iloc.png ├── info.png ├── lambda.png ├── languages.jpg ├── lat_sur_area.png ├── logo.png ├── module.png ├── operations.png ├── owl.svg ├── pandas.png ├── py_growth.png ├── pystyle.png ├── python.png ├── python_trend.png ├── slice.png ├── slice_2.png ├── sphere.png ├── string_function.png ├── student.svg ├── try_except.png ├── tryexceptelsefinally.png ├── variable.png ├── while_loop.png └── wizard.svg ├── Lessons ├── 0-All Lessons [OUTDATED].ipynb ├── 01-Introduction.ipynb ├── 02-Data types.ipynb ├── 03-Strings.ipynb ├── 04-Lists.ipynb ├── 05-Dictionaries.ipynb ├── 06-Tupels.ipynb ├── 07-Sets.ipynb ├── 08-Functions.ipynb ├── 09-Control structures.ipynb ├── 10-Generators.ipynb ├── 11-Error handling.ipynb ├── 12-File handling.ipynb ├── 13-Libraries.ipynb ├── 14-OOP.ipynb ├── 15-Pandas.ipynb ├── 16-Environment Management.md └── 17-logging.md ├── Others ├── MedSys.py ├── data_preparation.py └── desc_csv.py ├── Projects ├── Advance_Level.md ├── Basic_Middle_level.md └── Middle_Advance_Level.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | .DS_Store 3 | .vscode/settings.json 4 | TBD.txt 5 | *.pyc 6 | WIP/ -------------------------------------------------------------------------------- /Data/AirQualityUCI.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/AirQualityUCI.csv -------------------------------------------------------------------------------- /Data/AirQualityUCI.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/AirQualityUCI.xlsx -------------------------------------------------------------------------------- /Data/AirQualityUCI.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/AirQualityUCI.zip -------------------------------------------------------------------------------- /Data/Corr2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/Corr2020.pdf -------------------------------------------------------------------------------- /Data/Corr2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/Corr2020.png -------------------------------------------------------------------------------- /Data/Daily_Demand_Forecasting_Orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/Daily_Demand_Forecasting_Orders.csv -------------------------------------------------------------------------------- /Data/adult.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/adult.csv -------------------------------------------------------------------------------- /Data/adult_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/adult_names.txt -------------------------------------------------------------------------------- /Data/bank_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/bank_1.csv -------------------------------------------------------------------------------- /Data/bank_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/bank_2.csv -------------------------------------------------------------------------------- /Data/covid_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/covid_data.csv -------------------------------------------------------------------------------- /Data/data_types.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/data_types.names -------------------------------------------------------------------------------- /Data/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/description.txt -------------------------------------------------------------------------------- /Data/emp_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/emp_data/emp_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/emp_data/emp_db.py -------------------------------------------------------------------------------- /Data/first_text_file.txt: -------------------------------------------------------------------------------- 1 | Some funny text :D -------------------------------------------------------------------------------- /Data/name_i_want.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/name_i_want.csv -------------------------------------------------------------------------------- /Data/name_i_want.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/name_i_want.xlsx -------------------------------------------------------------------------------- /Data/review.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/review.txt -------------------------------------------------------------------------------- /Data/review_modified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/review_modified.txt -------------------------------------------------------------------------------- /Data/second_text_file.txt: -------------------------------------------------------------------------------- 1 | Some funny text :D -------------------------------------------------------------------------------- /Data/stock_px.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/stock_px.csv -------------------------------------------------------------------------------- /Data/totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/totals.csv -------------------------------------------------------------------------------- /Data/type_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/type_1.csv -------------------------------------------------------------------------------- /Data/type_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/type_2.csv -------------------------------------------------------------------------------- /Data/urg_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/urg_1.csv -------------------------------------------------------------------------------- /Data/urg_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Data/urg_2.csv -------------------------------------------------------------------------------- /Excercises/By Topic/Data Types/Data Tyes_Q.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Excercises/By Topic/Data Types/Data Tyes_Q.ipynb -------------------------------------------------------------------------------- /Excercises/By Topic/Data Types/Data Tyes_QA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Excercises/By Topic/Data Types/Data Tyes_QA.ipynb -------------------------------------------------------------------------------- /Excercises/By Topic/Lists/Lists_Q.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Excercises/By Topic/Lists/Lists_Q.ipynb -------------------------------------------------------------------------------- /Excercises/By Topic/Lists/Lists_QA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Excercises/By Topic/Lists/Lists_QA.ipynb -------------------------------------------------------------------------------- /Excercises/By Topic/Strings/String_Q.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Excercises/By Topic/Strings/String_Q.ipynb -------------------------------------------------------------------------------- /Excercises/By Topic/Strings/String_QA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Excercises/By Topic/Strings/String_QA.ipynb -------------------------------------------------------------------------------- /Excercises/Exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Excercises/Exercise.ipynb -------------------------------------------------------------------------------- /Images/Screenshot 2019-05-08 at 23.21.11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/Screenshot 2019-05-08 at 23.21.11.png -------------------------------------------------------------------------------- /Images/adv_pandas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/adv_pandas.png -------------------------------------------------------------------------------- /Images/assertion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/assertion.png -------------------------------------------------------------------------------- /Images/baby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/baby.svg -------------------------------------------------------------------------------- /Images/bicocca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/bicocca.png -------------------------------------------------------------------------------- /Images/data_types.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/data_types.jpeg -------------------------------------------------------------------------------- /Images/dataframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/dataframe.png -------------------------------------------------------------------------------- /Images/exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/exception.png -------------------------------------------------------------------------------- /Images/for_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/for_loop.png -------------------------------------------------------------------------------- /Images/fun_lambda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/fun_lambda.png -------------------------------------------------------------------------------- /Images/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/function.png -------------------------------------------------------------------------------- /Images/function_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/function_detail.png -------------------------------------------------------------------------------- /Images/iloc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/iloc.png -------------------------------------------------------------------------------- /Images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/info.png -------------------------------------------------------------------------------- /Images/lambda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/lambda.png -------------------------------------------------------------------------------- /Images/languages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/languages.jpg -------------------------------------------------------------------------------- /Images/lat_sur_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/lat_sur_area.png -------------------------------------------------------------------------------- /Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/logo.png -------------------------------------------------------------------------------- /Images/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/module.png -------------------------------------------------------------------------------- /Images/operations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/operations.png -------------------------------------------------------------------------------- /Images/owl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/owl.svg -------------------------------------------------------------------------------- /Images/pandas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/pandas.png -------------------------------------------------------------------------------- /Images/py_growth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/py_growth.png -------------------------------------------------------------------------------- /Images/pystyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/pystyle.png -------------------------------------------------------------------------------- /Images/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/python.png -------------------------------------------------------------------------------- /Images/python_trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/python_trend.png -------------------------------------------------------------------------------- /Images/slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/slice.png -------------------------------------------------------------------------------- /Images/slice_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/slice_2.png -------------------------------------------------------------------------------- /Images/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/sphere.png -------------------------------------------------------------------------------- /Images/string_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/string_function.png -------------------------------------------------------------------------------- /Images/student.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/student.svg -------------------------------------------------------------------------------- /Images/try_except.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/try_except.png -------------------------------------------------------------------------------- /Images/tryexceptelsefinally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/tryexceptelsefinally.png -------------------------------------------------------------------------------- /Images/variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/variable.png -------------------------------------------------------------------------------- /Images/while_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/while_loop.png -------------------------------------------------------------------------------- /Images/wizard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Images/wizard.svg -------------------------------------------------------------------------------- /Lessons/0-All Lessons [OUTDATED].ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/0-All Lessons [OUTDATED].ipynb -------------------------------------------------------------------------------- /Lessons/01-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/01-Introduction.ipynb -------------------------------------------------------------------------------- /Lessons/02-Data types.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/02-Data types.ipynb -------------------------------------------------------------------------------- /Lessons/03-Strings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/03-Strings.ipynb -------------------------------------------------------------------------------- /Lessons/04-Lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/04-Lists.ipynb -------------------------------------------------------------------------------- /Lessons/05-Dictionaries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/05-Dictionaries.ipynb -------------------------------------------------------------------------------- /Lessons/06-Tupels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/06-Tupels.ipynb -------------------------------------------------------------------------------- /Lessons/07-Sets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/07-Sets.ipynb -------------------------------------------------------------------------------- /Lessons/08-Functions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/08-Functions.ipynb -------------------------------------------------------------------------------- /Lessons/09-Control structures.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/09-Control structures.ipynb -------------------------------------------------------------------------------- /Lessons/10-Generators.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/10-Generators.ipynb -------------------------------------------------------------------------------- /Lessons/11-Error handling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/11-Error handling.ipynb -------------------------------------------------------------------------------- /Lessons/12-File handling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/12-File handling.ipynb -------------------------------------------------------------------------------- /Lessons/13-Libraries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/13-Libraries.ipynb -------------------------------------------------------------------------------- /Lessons/14-OOP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/14-OOP.ipynb -------------------------------------------------------------------------------- /Lessons/15-Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/15-Pandas.ipynb -------------------------------------------------------------------------------- /Lessons/16-Environment Management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/16-Environment Management.md -------------------------------------------------------------------------------- /Lessons/17-logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Lessons/17-logging.md -------------------------------------------------------------------------------- /Others/MedSys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Others/MedSys.py -------------------------------------------------------------------------------- /Others/data_preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Others/data_preparation.py -------------------------------------------------------------------------------- /Others/desc_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Others/desc_csv.py -------------------------------------------------------------------------------- /Projects/Advance_Level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Projects/Advance_Level.md -------------------------------------------------------------------------------- /Projects/Basic_Middle_level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Projects/Basic_Middle_level.md -------------------------------------------------------------------------------- /Projects/Middle_Advance_Level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/Projects/Middle_Advance_Level.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naviden/Python_Introduction/HEAD/README.md --------------------------------------------------------------------------------