pandas and cv2 import check

master
mehulnagpurkar 2018-06-08 19:31:46 +10:00
parent ef76adc2d4
commit 4921f428d2
1 changed files with 27 additions and 0 deletions

27
project_1.py 100644
View File

@ -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)