Learning
PCAP Study notes - Exceptions
Exceptions All Exceptions are derived from BaseException Concrete Exceptions In Python, "concrete exceptions" refer to specific, built-in exception types that are raised by the interpreter...
read articleWhere Am I
Modules os pathlib Finding The Path Of Your Script os module base_dir = os.path.dirname(__file__) pathlib base_dir = pathlib.Path(__file__).parent The Users Director os module # this can change if you...
read article