-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
30 lines (24 loc) · 1.02 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import numpy as np
import lib_example
# ==============================================================================
# USE SIMPLE FUNCTION
# ==============================================================================
v = np.arange(10)
print("the sum of the vector is", lib_example.sum_vector(v))
# ==============================================================================
# USE SIMPLE CLASS
# ==============================================================================
a = lib_example.Fruit("apple",100,True)
print("this fruit kind is:", a.get_name())
print("it weights:", a.get_weight(), "grams")
if a.good :
print("it is good")
else:
print("it is bad")
# ==============================================================================
# USE TEMPLATE CLASS AND FUNCTION
# ==============================================================================
vector_info = lib_example.get_vector_info(v)
print("vector length:", vector_info.length)
print("vector sum:", vector_info.sum)
print("vector mean:", vector_info.mean)