- Jupyter for Data Science
- Dan Toomey
- 166字
- 2021-07-08 09:22:32
How does it look when we execute scripts?
If we were to provide a name for the notebook, enter a simple Python script, and execute the notebook cells, we would see a display like this:

The script is:
name = "Dan Toomey" state = "MA" print(name + " lives in " + state)
We assign a value to the name and state variables and then print them out.
If you notice, I have placed the statements into two different cells. This is just for readability. They could all be in the same cell or three different cells.
There are line numbers assigned to each cell. The numbering always starts at 1 for the first cell, then as you move cells around the numbering may grow (as you can see the first cell is labeled cell 2 in the display).
Below the second cell, we have non-editable display results. Jupyter always displays any corresponding output of a cell just below. This could include error information as well.
- Rust實戰
- PostgreSQL技術內幕:事務處理深度探索
- C程序設計案例教程
- 零基礎學Python數據分析(升級版)
- Hands-On Functional Programming with TypeScript
- Learning Salesforce Einstein
- 數據結構與算法分析(C++語言版)
- RISC-V體系結構編程與實踐(第2版)
- JavaCAPS基礎、應用與案例
- Learning Laravel's Eloquent
- OpenGL Data Visualization Cookbook
- UNIX Linux程序設計教程
- RESTful Web Clients:基于超媒體的可復用客戶端
- PHP Microservices
- Monitoring Docker