Module 1 Flashcards
What are the strengths of Python?
- Ease of use
- Readable
- Complete
- Cross-platform
- Free
This strength of Python talks about how Python uses familiar constructs like loops and arrays from other coding languages.
Ease of Use
This strength of Python talks about how Python is easier to debug, maintain, and modify.
Readable
This strength of Python talks about how Python’s standard library comes with modules.
Complete
This strength of Python talks about how Python works on Windows, Mac, Linux, UNIX, and other platforms.
Cross-platform
This strength of Python talks about how Python was developed under an open-source model.
Free
It is a browser-based application that provides an environment for running and testing Python codes.
Jupyter
True or False
Jupyter is ideal for documentation purposes which make both ease of sharing and code replicability possible.
True
What happens when you launch Jupyter?
- opens a browser window
- runs a command line interface (Jupyter Notebook server)
Where can users access Jupyter Notebook?
localhost
This URL indicates the user’s connection to the Jupyter Notebook Server.
localhost:8888
It is a component of Jupyter which is accessible via web browser.
Dashboard
The dashboard displays files and folders located where?
home directory
It is a place to write in code or text.
Cell
A cell is indicated by a ___________, which is enclosed in a box.
cell block
What are the two types of a cell?
- Code
- Markdown
This cell is intended for typing in and running python codes.
Code Cell
This cell allows the user to create formatted text.
Markdown Cell
In a markdown cell, what is used to create a header for a section?
singe hash (#)
In a markdown cell, what is used to create a header for a subsection?
double hash (##)
In a markdown cell, what is used to create bold texts?
encapsulating double asterisks (text)
In a markdown cell, what is used to create italicized texts?
encapsulating single asterisks (text)
In a markdown cell, what is used to create highlighted texts?
encapsulating backticks (text
)