色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術(shù)文章
文章詳情頁

python小白的基礎(chǔ)問題 關(guān)于while循環(huán)的嵌套

瀏覽:131日期:2022-06-30 10:56:01

問題描述

源代碼如下:

# -*- coding:gb2312 -*-#站起來,坐下,站起來,轉(zhuǎn)5個(gè)圈,坐下。整個(gè)流程執(zhí)行10次Process1 = 1Process2 = 1while Process1 < 10: # 這個(gè)Process1 代表外面大的while循環(huán) print('='*5) print('第%d次執(zhí)行'%Process1) print('站起來') print('坐下') print('站起來') while Process2 <= 5: # 這個(gè)Process2 代表嵌套在里面的while小循環(huán)print('轉(zhuǎn)%d個(gè)圈'%Process2)Process2 = Process2 + 1 print('坐下') Process1 = Process1 + 1

執(zhí)行結(jié)果:python小白的基礎(chǔ)問題  關(guān)于while循環(huán)的嵌套

我的問題是:為什么如圖紅色標(biāo)記的這一部分,也就是Process2這一部分的內(nèi)循環(huán),在整個(gè)過程只執(zhí)行了一次,而不是隨著外面的整個(gè)大循環(huán)執(zhí)行10次? 我如何改進(jìn)才可以讓他隨著整個(gè)程序一直嵌套在里面循環(huán)下去?

問題解答

回答1:

執(zhí)行第一次外循環(huán)之后, Process2 的值變成了 6, 在執(zhí)行第二次外循環(huán)及以后時(shí),它的值一直是 6, 所以內(nèi)循環(huán)不執(zhí)行. 如果你想讓它執(zhí)行, Process2的初始化應(yīng)該放到外循環(huán)里面.

Process1 = 1while Process1 < 10: # 這個(gè)Process1 代表外面大的while循環(huán) print('='*5) print('第%d次執(zhí)行'%Process1) print('站起來') print('坐下') print('站起來') Process2 = 1 while Process2 <= 5: # 這個(gè)Process2 代表嵌套在里面的while小循環(huán)print('轉(zhuǎn)%d個(gè)圈'%Process2)Process2 = Process2 + 1 print('坐下') Process1 = Process1 + 1回答2:

要把內(nèi)層循環(huán)的變量賦值放在外層循環(huán)里面才行。保證在每次外層循環(huán)時(shí),內(nèi)層循環(huán)變量都從1開始。不然,內(nèi)層循環(huán)變量第一次運(yùn)行后變成6,之后一直是6,導(dǎo)致后面不再執(zhí)行。

# -*- coding:gb2312 -*-#站起來,坐下,站起來,轉(zhuǎn)5個(gè)圈,坐下。整個(gè)流程執(zhí)行10次Process1 = 1while Process1 < 10: # 這個(gè)Process1 代表外面大的while循環(huán) print('='*5) print('第%d次執(zhí)行'%Process1) print('站起來') print('坐下') print('站起來') Process2 = 1 while Process2 <= 5: # 這個(gè)Process2 代表嵌套在里面的while小循環(huán)print('轉(zhuǎn)%d個(gè)圈'%Process2)Process2 = Process2 + 1 print('坐下') Process1 = Process1 + 1

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 国产精品久久久影院 | 国产欧美日韩视频在线观看一区二区 | 久久一日本道色综合久久 | 国产黄色片一级 | 欧美三区在线 | 亚洲精品视频免费观看 | 韩国v欧美v亚洲v日本v | 国产在线播放一区二区 | 在线观看国内自拍 | 久久久香蕉视频 | 综合刺激网 | 国产91啦 | 国产午夜精品不卡观看 | 免费一区二区三区在线视频 | 在线看片 在线播放 | 亚洲高清在线看 | 欧美日韩日本国产 | 成人区精品一区二区毛片不卡 | 国产在线观看一区二区三区 | 国内精品视频九九九九 | 国产67194| 小草青青神马影院 | 亚洲一区二区三区精品国产 | 日韩成人小视频 | 一级毛片美国一级j毛片不卡 | 亚洲精品国产高清不卡在线 | 久草视频免费在线观看 | 国产极品一区 | 日本巨乳中文字幕 | 欧美大片毛片aaa免费看 | 国产片一级 | 国产成人精品曰本亚洲 | 一本久久道久久爱 | 久久国产精品免费视频 | 国产合集91合集久久日 | 亚洲精品第一国产综合野 | 午夜欧美在线 | 美女黄色免费看 | 在线看免费观看韩国特黄一级 | 亚洲国产片 | 美国一级毛片∞ |