June 2018
Intermediate to advanced
294 pages
7h 5m
English
In this section of the tool, I added the utility functions that we will reuse throughout the source code. These functions are shown in the following bullet list:
separator_single_line = '------------------------------------------------------------'separator_double_line = '============================================================'
# Printing Red Text for errorsdef print_red(text): print("\033[91m {}\033[00m".format (text))# Printing Green Text for messagesdef print_green(text): print("\033[92m {}\033[00m".format (text))# Printing Yellow Text for warningsdef print_yellow(text): print("\033 ...
Read now
Unlock full access