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
)
What are the two modes in Jupyter?
- Edit
- Command
This mode of Jupyter is indicated by a green line in the leftmost par of an active cell.
Edit
This mode of Jupyter is indicated by a blue line in the leftmost par of an active cell.
Command
What is the shortcut keys to run a code in a Jupyter cell?
Shift + Enter
This is the number that Jupyter assigns to remember which codes are executed first.
Execution Numbers
True or False
Execution numbers are found in the leftmost part of the executed code cells.
False - found in the rightmost part
This is the basic output command of Python.
print()
True or False
print() can’t join plain text with values of numerical expression.
False - print(“1 + 1 =”, 1+1) is possible
What are the basic numerical operations in Python?
- Addition (+)
- Subtraction (-)
- Multiplication (*)
- Division (/)
- Exponentiation (**)
- Modulo (%)
- Integer Division (//)
It is an external python file that can be imported to a current python file.
Module | import module_name (import math)
True or False
Modules are where functions and other resources are coded in.
True
True or False
Modules allows the user to access a collection of scripts.
False - allows to access a collection of functions
What is the syntax of math functions?
math.function_name
True or False
Python can be used to compare values.
True, Python can use Logical Operators
The keywords ____ and ____ when dealing with multiple comparisons.
and, or
The keyword ____ is used to denote a negation of a comparison result.
not
What command allows the user to see all the variables in the current Jupyter notebook?
%whos
What are the datatypes available in Python?
- Numeric (int, float, complex)
- String (str)
- Sequence (list, tuple, range)
- Mapping (dict)
- Boolean (bool)
- Set (set, frozeenset)
What data type are int, float, and complex?
Numeric
What data type is str?
String
What data type are list, tuple, and range?
Sequence
What data type is dict?
Mapping
What data type is bool?
Boolean
What data type are set and frozeenset?
Set
This data type holds numeric values.
Numeric
This data type holds a sequence of characters.
String
This data type holds a collection of items.
Sequence
This data type holds data in key-value pair form.
Mapping
This data type holds either true or false.
Boolean
This data type holds a collection of unique items.
Set
This command is used to determine the type of data stored in a variable.
type()
This command is used to take user input.
input()
This command converts a value to an integer.
int()
This command converts a value to a float.
float()
This command rounds a value to a specified precision.
round()