Automate Cybersecurity Tasks with Python Flashcards
Automation
The use of technology to reduce human and manual effort to perform common and repetitive tasks.
Boolean data
Data that can only be one of two values: either True or False.
Comment
A note programmers make about the intention behind their code.
Conditional statement
A statement that evaluates code to determine if it meets a specified set of conditions.
Data type
A category for a particular type of data item.
Dictionary data
Data that consists of one or more key-value pairs.
Float data
Data consisting of a number with a decimal point.
Integer data
Data consisting of a number that does not include a decimal point.
Integrated development environment (IDE)
A software application for writing code that provides editing assistance and error correction tools.
Interpreter
A computer program that translates Python code into runnable instructions line by line.
Iterative statement
Code that repeatedly executes a set of instructions.
List data
Data structure that consists of a collection of data in sequential form.
Loop variable
A variable that is used to control the iterations of a loop.
Notebook
An online interface for writing, storing, and running code.
Set data
Data that consists of an unordered collection of unique values.
String data
Data consisting of an ordered sequence of characters.
Syntax
The rules that determine what is correctly structured in a computing language.
Tuple data
Data structure that consists of a collection of data that cannot be changed.
Type error
An error that results from using the wrong data type.
Variable
A container that stores data.
Integrated development environment
What does IDE stand for?
Argument (Python)
The data brought into a function when it is called.
Built-in
A function that exists within Python and can be called directly.
Comment
A note programmers make about the intention behind their code
Function
A section of code that can be reused in a program.
Global variable
A variable that is available through the entire program.
Indentation
Space added at the beginning of a line of code.
Library
A collection of modules that provide code users access in their programs.
Local variable
A variable assigned within a function.
Module
A Python file that contains additional functions, variables, classes, and any kind of runnable code.
Parameter (Python)
An object that is included in a function definition for use in that function.
PEP 8 style guide
A resource that provides stylistic guidelines for programmers working in Python.
Python Standard Library
An extensive collection of Python code that often comes packaged with Python.
Return statement
A Python statement that executes inside a function and sends information back to the function call.
Style guide
A manual that informs the writing, formatting, and design of documents.
User-defined function
A function that programmers design for their specific needs.
Algorithm
A set of rules that solve a problem.
Bracket notation
The indices placed in square brackets.
Debugging
The practice of identifying and fixing errors in code.
Immutable
An object that cannot be changed after it is created and assigned a value.
Index
A number assigned to every element in a sequence that indicates its position.
List concatenation
The concept of combining two lists into one by placing the elements of the second list directly after the elements of the first list.
List data
Data structure that consists of a collection of data in sequential form.
Method
A function that belongs to a specific data type.
Regular expression (regex)
A sequence of characters that forms a pattern.
String concatenation
The process of joining two strings together.
String data
Data consisting of an ordered sequence of characters.
Substring
A continuous sequence of characters within a string.
Debugger
A software tool that helps to locate the source of an error and assess its causes.
Exception
An error that involves code that cannot be executed even though it is syntactically correct.
Logic error
An error that results when the logic used in code produces unintended results.
Parsing
The process of converting data into a more readable format.
Syntax error
An error that involves invalid usage of a programming language.
DevSecOps
The process of building security checks directly into how you build and release software. It is about making security a shared responsibility and automating security practices as part of your everyday workflow, ensuring that security is considered at every stage of your CI/CD pipeline.
Continuous Delivery/Deployment
What does CI/CD stand for?
Syntax errors, logic errors, and exceptions
What are the three types of errors in Python?