├── .gitignore ├── .ipynb_checkpoints └── 4-Gurobipy-checkpoint.ipynb ├── 1-Basics_of_Python.ipynb ├── 16tstcar.csv ├── 2-Basics_of_Python_2.ipynb ├── 3-Modules_Vectors_Plots.ipynb ├── 31380.css ├── 4-Gurobipy.ipynb ├── LICENSE ├── README.md ├── myhelpers.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TueVJ/Python-Introduction/HEAD/.gitignore -------------------------------------------------------------------------------- /.ipynb_checkpoints/4-Gurobipy-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TueVJ/Python-Introduction/HEAD/.ipynb_checkpoints/4-Gurobipy-checkpoint.ipynb -------------------------------------------------------------------------------- /1-Basics_of_Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TueVJ/Python-Introduction/HEAD/1-Basics_of_Python.ipynb -------------------------------------------------------------------------------- /16tstcar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TueVJ/Python-Introduction/HEAD/16tstcar.csv -------------------------------------------------------------------------------- /2-Basics_of_Python_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TueVJ/Python-Introduction/HEAD/2-Basics_of_Python_2.ipynb -------------------------------------------------------------------------------- /3-Modules_Vectors_Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TueVJ/Python-Introduction/HEAD/3-Modules_Vectors_Plots.ipynb -------------------------------------------------------------------------------- /31380.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TueVJ/Python-Introduction/HEAD/31380.css -------------------------------------------------------------------------------- /4-Gurobipy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TueVJ/Python-Introduction/HEAD/4-Gurobipy.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TueVJ/Python-Introduction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TueVJ/Python-Introduction/HEAD/README.md -------------------------------------------------------------------------------- /myhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TueVJ/Python-Introduction/HEAD/myhelpers.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | pandas 4 | --------------------------------------------------------------------------------