for x in a:
if x[1] in NERTagger:
kata = ''
kt = NERTagger[x[1]]
for y in a:
if x[0] is not y[0]:
kata += y[0] + ' '
elif x[0] == y[0]:
kata += kt + ' '
hasil.append(kata)
如何将上面的代码转换为while循环?因为代码中有一个if和for循环
答案 0 :(得分:2)
import Vue from 'vue';
import AppLayout from './theme/Layout.vue';
import router from '../router';
import store from './vuex/index';
Vue.config.productionTip = false;
new Vue({
router,
...AppLayout,
store
}).$mount('#app');
答案 1 :(得分:0)
使用嵌套的for
函数没有问题。
while
只是for
的一般形式:
for
做了三件事:
while
执行以下操作之一:设置停止条件。