├── .gitmodules ├── Day1 ├── 1_Introduction to the Course.pdf ├── 2_Python 101 Introduction.pdf ├── Day1_Assignment └── new_filename ├── Day10 ├── 15_Python_STL.pdf ├── compression.py ├── do_QA.py ├── do_datetime.py ├── do_math.py ├── do_unittest.py ├── downloader.py ├── os_tasks.py ├── performance_testing.py ├── random_things.py └── regex.py ├── Day2 ├── 3_Python_Essentials.pdf ├── 4_Programming_Fundamentals.pdf └── Day2_Assignment ├── Day3 ├── 5_STD_IO_and_Flow_Control.pdf ├── 6_Flow_Control_Looping_and_Introduction_to_Data_Structures_in_Python.pdf └── Day3_Assignment ├── Day4 ├── 7_Functions_in_Python.pdf ├── 8_Data_Structures_in_Python(Part-1) - Data Types.pdf ├── Day4_Assignment └── Day4_Assignment_Answers │ ├── 1.py │ ├── 2.py │ └── 3.py ├── Day5 ├── 9_Data_Structures_In_Python_(Part-2)_Lists_Tuples_Sets_FrozenSets_Dictionaries.pdf ├── Assignment_5_out_of_scope └── Day5_Assignment ├── Day6 ├── 10_Exception_Handling_and_File_Handling_Basics.pdf ├── 11_Object_Oriented_Programming_In_Python.pdf └── Day6_Assignment ├── Day7 ├── 12_Object_Oriented_Programming_In_Python (Part-2).pdf └── Day7_Assignment ├── Day8 ├── 13_Modules_and_Packages_in_Python.pdf ├── ex1 │ ├── __pycache__ │ │ └── script3.cpython-36.pyc │ ├── script1.py │ ├── script2.py │ └── script3.py ├── ex2 │ ├── package │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── module.cpython-36.pyc │ │ │ ├── module1.cpython-36.pyc │ │ │ └── module2.cpython-36.pyc │ │ ├── module1.py │ │ └── module2.py │ ├── script1.py │ └── script2.py ├── ex3 │ ├── package │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── external.cpython-36.pyc │ │ ├── external.py │ │ ├── subpackage1 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── module.cpython-36.pyc │ │ │ └── module.py │ │ └── subpackage2 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── module.cpython-36.pyc │ │ │ └── module.py │ ├── script1.py │ └── script2.py └── module.py ├── Day9 ├── 14_Structuring_a_python_project,_Dependency_management_using_virtualenv_and_docker.pdf └── Dockerfile ├── Docs └── REPOS ├── LICENSE ├── README.md └── Syllabus ├── 1_Python_Fundamentals.pdf ├── 2_Practical_Python_With_Relevant_Technologies.pdf └── 3_Machine_Learning_Fundamentals.pdf /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/.gitmodules -------------------------------------------------------------------------------- /Day1/1_Introduction to the Course.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day1/1_Introduction to the Course.pdf -------------------------------------------------------------------------------- /Day1/2_Python 101 Introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day1/2_Python 101 Introduction.pdf -------------------------------------------------------------------------------- /Day1/Day1_Assignment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day1/Day1_Assignment -------------------------------------------------------------------------------- /Day1/new_filename: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day10/15_Python_STL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day10/15_Python_STL.pdf -------------------------------------------------------------------------------- /Day10/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day10/compression.py -------------------------------------------------------------------------------- /Day10/do_QA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day10/do_QA.py -------------------------------------------------------------------------------- /Day10/do_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day10/do_datetime.py -------------------------------------------------------------------------------- /Day10/do_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day10/do_math.py -------------------------------------------------------------------------------- /Day10/do_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day10/do_unittest.py -------------------------------------------------------------------------------- /Day10/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day10/downloader.py -------------------------------------------------------------------------------- /Day10/os_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day10/os_tasks.py -------------------------------------------------------------------------------- /Day10/performance_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day10/performance_testing.py -------------------------------------------------------------------------------- /Day10/random_things.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day10/random_things.py -------------------------------------------------------------------------------- /Day10/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day10/regex.py -------------------------------------------------------------------------------- /Day2/3_Python_Essentials.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day2/3_Python_Essentials.pdf -------------------------------------------------------------------------------- /Day2/4_Programming_Fundamentals.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day2/4_Programming_Fundamentals.pdf -------------------------------------------------------------------------------- /Day2/Day2_Assignment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day2/Day2_Assignment -------------------------------------------------------------------------------- /Day3/5_STD_IO_and_Flow_Control.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day3/5_STD_IO_and_Flow_Control.pdf -------------------------------------------------------------------------------- /Day3/6_Flow_Control_Looping_and_Introduction_to_Data_Structures_in_Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day3/6_Flow_Control_Looping_and_Introduction_to_Data_Structures_in_Python.pdf -------------------------------------------------------------------------------- /Day3/Day3_Assignment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day3/Day3_Assignment -------------------------------------------------------------------------------- /Day4/7_Functions_in_Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day4/7_Functions_in_Python.pdf -------------------------------------------------------------------------------- /Day4/8_Data_Structures_in_Python(Part-1) - Data Types.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day4/8_Data_Structures_in_Python(Part-1) - Data Types.pdf -------------------------------------------------------------------------------- /Day4/Day4_Assignment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day4/Day4_Assignment -------------------------------------------------------------------------------- /Day4/Day4_Assignment_Answers/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day4/Day4_Assignment_Answers/1.py -------------------------------------------------------------------------------- /Day4/Day4_Assignment_Answers/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day4/Day4_Assignment_Answers/2.py -------------------------------------------------------------------------------- /Day4/Day4_Assignment_Answers/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day4/Day4_Assignment_Answers/3.py -------------------------------------------------------------------------------- /Day5/9_Data_Structures_In_Python_(Part-2)_Lists_Tuples_Sets_FrozenSets_Dictionaries.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day5/9_Data_Structures_In_Python_(Part-2)_Lists_Tuples_Sets_FrozenSets_Dictionaries.pdf -------------------------------------------------------------------------------- /Day5/Assignment_5_out_of_scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day5/Assignment_5_out_of_scope -------------------------------------------------------------------------------- /Day5/Day5_Assignment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day5/Day5_Assignment -------------------------------------------------------------------------------- /Day6/10_Exception_Handling_and_File_Handling_Basics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day6/10_Exception_Handling_and_File_Handling_Basics.pdf -------------------------------------------------------------------------------- /Day6/11_Object_Oriented_Programming_In_Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day6/11_Object_Oriented_Programming_In_Python.pdf -------------------------------------------------------------------------------- /Day6/Day6_Assignment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day6/Day6_Assignment -------------------------------------------------------------------------------- /Day7/12_Object_Oriented_Programming_In_Python (Part-2).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day7/12_Object_Oriented_Programming_In_Python (Part-2).pdf -------------------------------------------------------------------------------- /Day7/Day7_Assignment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day7/Day7_Assignment -------------------------------------------------------------------------------- /Day8/13_Modules_and_Packages_in_Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/13_Modules_and_Packages_in_Python.pdf -------------------------------------------------------------------------------- /Day8/ex1/__pycache__/script3.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex1/__pycache__/script3.cpython-36.pyc -------------------------------------------------------------------------------- /Day8/ex1/script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex1/script1.py -------------------------------------------------------------------------------- /Day8/ex1/script2.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | #!/usr/bin/env python3 3 | -------------------------------------------------------------------------------- /Day8/ex1/script3.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | #!/usr/bin/env python3 3 | -------------------------------------------------------------------------------- /Day8/ex2/package/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex2/package/__init__.py -------------------------------------------------------------------------------- /Day8/ex2/package/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex2/package/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Day8/ex2/package/__pycache__/module.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex2/package/__pycache__/module.cpython-36.pyc -------------------------------------------------------------------------------- /Day8/ex2/package/__pycache__/module1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex2/package/__pycache__/module1.cpython-36.pyc -------------------------------------------------------------------------------- /Day8/ex2/package/__pycache__/module2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex2/package/__pycache__/module2.cpython-36.pyc -------------------------------------------------------------------------------- /Day8/ex2/package/module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex2/package/module1.py -------------------------------------------------------------------------------- /Day8/ex2/package/module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex2/package/module2.py -------------------------------------------------------------------------------- /Day8/ex2/script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex2/script1.py -------------------------------------------------------------------------------- /Day8/ex2/script2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex2/script2.py -------------------------------------------------------------------------------- /Day8/ex3/package/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/package/__init__.py -------------------------------------------------------------------------------- /Day8/ex3/package/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/package/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Day8/ex3/package/__pycache__/external.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/package/__pycache__/external.cpython-36.pyc -------------------------------------------------------------------------------- /Day8/ex3/package/external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/package/external.py -------------------------------------------------------------------------------- /Day8/ex3/package/subpackage1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/package/subpackage1/__init__.py -------------------------------------------------------------------------------- /Day8/ex3/package/subpackage1/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/package/subpackage1/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Day8/ex3/package/subpackage1/__pycache__/module.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/package/subpackage1/__pycache__/module.cpython-36.pyc -------------------------------------------------------------------------------- /Day8/ex3/package/subpackage1/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/package/subpackage1/module.py -------------------------------------------------------------------------------- /Day8/ex3/package/subpackage2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/package/subpackage2/__init__.py -------------------------------------------------------------------------------- /Day8/ex3/package/subpackage2/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/package/subpackage2/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Day8/ex3/package/subpackage2/__pycache__/module.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/package/subpackage2/__pycache__/module.cpython-36.pyc -------------------------------------------------------------------------------- /Day8/ex3/package/subpackage2/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/package/subpackage2/module.py -------------------------------------------------------------------------------- /Day8/ex3/script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/script1.py -------------------------------------------------------------------------------- /Day8/ex3/script2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/ex3/script2.py -------------------------------------------------------------------------------- /Day8/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day8/module.py -------------------------------------------------------------------------------- /Day9/14_Structuring_a_python_project,_Dependency_management_using_virtualenv_and_docker.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day9/14_Structuring_a_python_project,_Dependency_management_using_virtualenv_and_docker.pdf -------------------------------------------------------------------------------- /Day9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Day9/Dockerfile -------------------------------------------------------------------------------- /Docs/REPOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Docs/REPOS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/README.md -------------------------------------------------------------------------------- /Syllabus/1_Python_Fundamentals.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Syllabus/1_Python_Fundamentals.pdf -------------------------------------------------------------------------------- /Syllabus/2_Practical_Python_With_Relevant_Technologies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Syllabus/2_Practical_Python_With_Relevant_Technologies.pdf -------------------------------------------------------------------------------- /Syllabus/3_Machine_Learning_Fundamentals.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash2shukla/Python101-ABESIT/HEAD/Syllabus/3_Machine_Learning_Fundamentals.pdf --------------------------------------------------------------------------------