AIFF is Audio Interchange File Format, a format for storing digital audio samples in a file. AIFF-C is a newer version of the format that includes the ability to compress audio data.
You can read and write these files with #Python using the aifc module!
When you go create an AIFF file with #Python, you use much the same type of code as you would when you use Python's `wav` module.
Abstract Base Classes in #Python provide the following:
🐍 A way to overload isinstance() and issubclass().
🐍 A new module abc which serves as an “ABC support framework”.
🐍 Specific ABCs for containers and iterators, to be added to the collections module.
Let's get started learning about these methods by looking at ` isalnum()`, which returns True if all characters in the string are alphanumeric and there is at least one character,
The `isalpha()` string method will return True if all characters in the string are alphabetic and there is at least one character