Python-Basic-Jupyter/project_1.py

28 lines
295 B
Python
Raw Permalink Normal View History

2018-06-08 17:31:46 +08:00
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)