> For the complete documentation index, see [llms.txt](https://drlilianblot.gitbook.io/introduction-to-programming-with-python/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://drlilianblot.gitbook.io/introduction-to-programming-with-python/file-i-o/glossary.md).

# Glossary

**persistent:** Pertaining to a program that runs indefinitely and keeps at least some of its data in permanent storage.

**format operator:** An operator, `%`, that takes a format string and a tuple and generates a string that includes the elements of the tuple formatted as specified by the format string.&#x20;

**format string:** A string, used with the format operator, that contains format sequences.

**format sequence:** A sequence of characters in a format string, like `%d`, that specifies how a value should be formatted.&#x20;

**text file:** A sequence of characters stored in permanent storage like a hard drive.&#x20;

**directory:** A named collection of files, also called a folder.&#x20;

**path:** A string that identifies a file.

**relative path:** A path that starts from the current directory.&#x20;

**absolute path:** A path that starts from the topmost directory in the file system.&#x20;
