This repository provides the material covered in the Python Crash Course (26th, 27th September and 3rd, 4th October 2023) offered in the Transferable Skills programme at the University of Basel.
Find the course description in the programme of Transferable Skills.
- Friday, 22 September: Upload notebooks of first week: "2-Data_Structures", "3-Conditional_Statements", "4-Iterations", and "5-Plotting".
- Tuesday afternoon, 26 September: Upload solutions of first day.
- Wednesday afternoon, 27 September: Upload solutions of second day.
- Friday afternoon, 29 September: Upload notebooks of second week.
- Tuesday afternoon, 3 October: Upload solutions of third day.
- Wednesday afternoon, 4 October: Upload all course material.
In order to set up Python on your own machine, I recommend using Anaconda. Follow the steps outlined in my YouTube instruction video to install Python and getting started with the Jupyter notebooks.
If you are more advanced and/or Anaconda is already set up on your machine, you can create a new environment with the necessary libraries through
conda env create -f environment.yml
activate the environment via
conda activate pythonCC
and start Jupyter lab with
jupyter lab