Unit 7 - Module 4 - Python Automation Flashcards
What is a container that stores data?
A Variable
What is a statement that evaluates code to determine if it meets a specified set of conditions?
Conditional Statement
What is code that repeatedly executes a set of instructions?
Iterative statement
What is a section of code that can be reused in a program?
a Function
What statement handles errors and manages external resources?
with
What function opens a file in Python?
open()
What is the process of converting data into a more readable format?
Parsing
What process converts a string into a list?
.split()
What process concatenates the elements of an iterable into a string?
.join()
What is an error that involves invalid usage of a programming language?
Syntax Error
What is an error that results when the lgic used to code produces unintended results?
Logic Error
What is an error that involves code that cannot be executed even though it is syntactically correct?
Exception
What is a software application for writing code that procides editing assistance and error correction tools?
Integrated Development Enviroment (IDE)
What is a software tool that helps to locate the source if an error and assess its causes?
Debugger