为什么我的吞咽过程完成后我不能停止

时间:2017-12-02 16:14:43

标签: javascript node.js reactjs gulp

我想对我的NodeJs应用反应

这是我的gulpfile:

import numpy as np
mask = np.isin([1,2,3,4,5,8,6,1,1],[1,2,3,5,1])

mask[mask.cumsum() > 5] = False
mask
# array([ True,  True,  True, False,  True, False, False,  True, False], dtype=bool)

gulp.task( '默认',[ 'JS']);

然后我输入gulp js

import re
import logging

x = input("enter number of bad car")
if re.match('/^[A-ZА-Я]{1}[0-9]{3}[A-ZА-Я]{2}([0-9]{0,3})?$/', x):
  logging.debug("found match" + x)
  with open("some.txt" , 'w') as f:
    f.write(x + '\n')
    else:
      logging.debug("does not match")

终端卡在这里,我不得不输入Ctrl C来阻止它。

奇怪的是,当我打开index.html时,外观发生了变化。

所以我不知道那是怎么回事。

0 个答案:

没有答案