Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 1.15 KB

README.md

File metadata and controls

18 lines (12 loc) · 1.15 KB

Python notebooks

What is a Python notebook?

A Python Jupyter Notebook is an interactive computing environment that allows users to create and share documents containing live code, equations, visualizations, and narrative text. It is widely used for data analysis, scientific research, machine learning, and educational purposes. Users can run Python code in cells, see the output immediately, and easily document their process, making it a powerful tool for both development and presentation. Pandas dataframe](https://gist.github.com/telatin/a1fcf685f41d406ac5ed52f497aca13a)

In this folder

The first notebook focuses on the basics of Python, and this is what we cover during the Masterclass. There are two additional notebooks using powerful libraries for data science, to give an idea of the potential uses.

  • 01-hello: the very basics of python
  • 02-tips: data analysis, an example using the tips table
  • 03-books: data analysis, an example using the books table
  • 04-strings: a walktrough strings and their methods
  • 05-object: example class to create custom objects