From: = <=> Date: Wed, 1 Apr 2026 15:32:24 +0000 (+0200) Subject: More newlines X-Git-Url: https://git.uwuaxy.net/error_handling.png?a=commitdiff_plain;ds=sidebyside;p=axy%2Fft%2Fpython08.git More newlines --- diff --git a/ex01/loading.py b/ex01/loading.py index d970a26..8da1ab5 100644 --- a/ex01/loading.py +++ b/ex01/loading.py @@ -55,7 +55,7 @@ def analyze_data() -> None: plt.legend() plt.grid(True) plt.savefig("matrix_analysis.png") - print() + print() print("Analysis complete!") print("Results saved to: matrix_analysis.png") @@ -64,9 +64,9 @@ def main() -> None: """Main function to run the loading program.""" try: print("LOADING STATUS: Loading programs...") - print() + print() if check_dependencies(): - print() + print() analyze_data() except Exception as e: print(f"An error occurred: {e}") diff --git a/ex02/oracle.py b/ex02/oracle.py index b2e904c..c980cf7 100644 --- a/ex02/oracle.py +++ b/ex02/oracle.py @@ -69,10 +69,13 @@ def display_config(config: dict[str, str | None]) -> None: def main() -> None: """Main function to run the oracle program.""" try: + print() print("ORACLE STATUS: Reading the Matrix...") config = load_config() display_config(config) + print() check_security() + print() print("The Oracle sees all configurations.") except Exception as e: print(f"An error occurred: {e}")