Opens and reads the contents of a file.
What is Read Function
A block that runs code only if a condition is true.
What is an if statement?
Returns a random float between 0 and 1.
What is the random module?
Adds an item to a specific spot in a list.
What is insert?
In file management, a built-in function that adds content to an existing file.
What is Append Function
Ends a function and returns a value to be used elsewhere.
What is return keyword?
Provides functions for dates and times.
What is Datetime Module?
Deletes a specific item from a list.
What is remove?
This module provides access to operating system tasks like renaming or deleting files.
What is the os module?
Follows an if statement, runs if the previous condition was false.
What is elif statement?
Formats a date/time into a string
What is strftime?
A method used to insert variables into a string with precise formatting.
What is string.format?
A helper module for finding files and folders on specific paths.
What is os.path?
Attempts to run code without errors.
What is try?
Returns a random number between a start and stop value.
What is randrange ?
This term refers to the spacing that defines code blocks in Python.
What is indentation?
Imports built-in system functions for Python.
What is a Sys Module?
Checks if two variables share the same memory location.
What is Identity Operator (is / is not))?
Returns the modulus of two numbers as a floating point.
What is fmod?
A value automatically assigned in a function parameter if no argument is provided.
What is a Default Value?