diff --git a/project_1.py b/project_1.py new file mode 100644 index 0000000..103b2ee --- /dev/null +++ b/project_1.py @@ -0,0 +1,27 @@ + +import pandas as pd +import numpy as np +from scipy import stats + +import cv2 + +cv2.haarcascades + + + +def multiply(a, b): + c = a * b + + return c + +def check(): + + if 10: + print ('What is happening') + + +if __name__ == '__main__': + answer = multiply(2, 3) + check() + + print(answer)