Agile育成ブログ
未来を変える喜びを
Python

ループ構文


Warning: count(): Parameter must be an array or an object that implements Countable in /home/xs638785/agile-software.site/public_html/wp-content/plugins/rich-table-of-content/functions.php on line 490

for

for(準備処理;繰り返しを続ける条件;繰り返し末尾で行う処理){
繰り返す処理
}

inputをfor文で回す

スペース区切りのデータをinputでとってくる

x,y=map(int,input().split(" "))

while

while(繰り返しを続ける条件){
繰り返す処理
}

continue

ループ処理が終了しない。
continueはあくまでループブロック内の残りの処理をスキップして次の繰り返しに移行する

You cannot copy content of this page