From: = <=> Date: Wed, 1 Apr 2026 15:19:46 +0000 (+0200) Subject: newlines #2 X-Git-Url: https://git.uwuaxy.net/flexible_layout.mp4?a=commitdiff_plain;h=93c34d20c2a196c15a4d48ec7f2d90b4bf0a7a6a;p=axy%2Fft%2Fpython08.git newlines #2 --- diff --git a/ex01/loading.py b/ex01/loading.py index d8d8bf0..d970a26 100644 --- a/ex01/loading.py +++ b/ex01/loading.py @@ -21,7 +21,8 @@ def check_dependencies() -> bool: all_ok = False if not all_ok: - print("\nTo install missing dependencies, run:") + print() + print("To install missing dependencies, run:") print("pip install -r requirements.txt") print("OR") print("poetry install") @@ -54,6 +55,7 @@ def analyze_data() -> None: plt.legend() plt.grid(True) plt.savefig("matrix_analysis.png") + print() print("Analysis complete!") print("Results saved to: matrix_analysis.png") @@ -62,7 +64,9 @@ def main() -> None: """Main function to run the loading program.""" try: print("LOADING STATUS: Loading programs...") + print() if check_dependencies(): + print() analyze_data() except Exception as e: print(f"An error occurred: {e}")