Week 7 - BALT 4396B - Chapter 8-10
Learning Python with ChatGPT and Google Colab Chapter 8-9 Summary Chapter 8 of Professor Kelsey's book "Learning Python with ChatGPT and Google Colab" goes over Python Libraries. We got a very quick summary of what Python libraries are in one of the past weeks as an introduction to Python. To quickly summarize it again Python libraries are collections of codes that can be used and copied onto your own work. These codes that are found in the libraries can help you save a lot of time. You won't have to always put effort into creating new codes if you find what you need within these libraries. This can be seen as a very useful feature. This chapter also covers how Python libraries and Google Colab are linked to each other. Let's take a quick look at how to use these libraries with Google Colab. Step 1 - Open a new or existing notebook in Google Colab. Step 2 - use the !pip install command followed by the name of the library (to install a library) Ex: !pip instal...