迭代數組: v-for="site in sites”,sites表示源數組名,site表示數組元素: 迭代對象: v-for=“value in Object”, v-for="(value,key) in Object" v-for="(value,key,index) in Object" 一定要是這個順序,第二個只為key,第三個值為index,換了名字,也是按照這個順序返回: 迭代整數: v-for="n in 10" 循環語…
除了重複使用Function,有時我們須檢查結果,依此判斷下個步驟該怎麼進行,如此就需要條件式 condition statement. if ... elif ... ese ( 或 if ... elif ...elif 或 if .. else ) while >>> def numIsEven(k):... if k % 2 == 0:... print(k,' is even')... else:... print(k,' is odd').…