We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69015fb commit 24a73e7Copy full SHA for 24a73e7
machine_learning/linear_discriminant_analysis.py
@@ -44,7 +44,6 @@
44
"""
45
from collections.abc import Callable
46
from math import log
47
-from os import name, system
48
from random import gauss, seed
49
from typing import TypeVar
50
@@ -399,7 +398,7 @@ def main():
399
398
if input("Press any key to restart or 'q' for quit: ").strip().lower() == "q":
400
print("\n" + "GoodBye!".center(100, "-") + "\n")
401
break
402
- system("clear" if name == "posix" else "cls")
+ # system("clear" if name == "posix" else "cls")
403
404
405
if __name__ == "__main__":
0 commit comments