Intro
List 宣告方法
my_list = [0,1,2,3,4,5,6,7,8,9]
P.S. 陣列物件: numpy.array
my_list = [0,1,2,3,4,5,6,7,8,9]
from package01.package02.module01 import class01
class DataSet:
def __init__(self):
self.train = numpy.array([[]])
self.train_taget = numpy.array([[]])
self.test = numpy.array([])
self.test_target = numpy.array([])
#Python python-dev #Python3 - pip3 sudo apt-get install -y python3-pip sudo pip3 install jupyter #Python2 - pip sudo apt-get install python-pip sudo pip install jupyter #執行 jupyter notebook --no-browser --ip=0.0.0.0 --port=8888
- url: /common/menu.html
static_files: common/menu.html
upload: common/menu.html
- url: /css
static_dir: css
- url: /product
script: script/product.py
- url: /(common/.*\.(html|png))
static_files: \1
upload: (common/.*\.(html|png))
#Rewrite Path
- url: /(.*\.(html|png))
static_files: common/\1
upload: common/(.*\.(html|png))