7 Automate Cybersecurity tasks with Python Flashcards
Automation
use of tech to reduce human and manual effort to perform common and repetitive tasks
Boolean data
data that can only be one of two values: True or False
Command-line interface
text-based user interface that uses commands to interact with the computer
Comment
note programmers make about the intention behind their code
Conditional statement
statement that evaluates code to determine if it meets a specified set of conditions
Data type
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
software application for writing code that provides editing assistance and error correction tools
Interpreter
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
variable that is used to control the iterations of a loop
Notebook
online interface for writing, storing, and running code
Programming
process that can be used to create a specific set of instructions for a computer to execute tasks
Set data
data that consists of an unordered collection of unique values
String data
data consisting of an ordered sequence of characters
Syntax
rules that determine what is correctly structured in a computer language
Tuple data
data structure that consists of a collection of data that cannot be changed
Type error
error that results from using the wrong data type
Variable
container that stores data
argument (python)
data brought into a function when it is called
Built-in function
function that exists within Python and can be called direclty
Comment
note programmers make about the intention behind their code