python学習フロー制御文詳細解


腫萼葃葃葃芰菗菗菵菵荌荌荍荐同前
ハコードの字下げフォーマットは重要です。4つのスペースを制御してください。
ハは論理値(True,Flaase)に基づいてプログラムの運転方向を判断する。
›Ture:空でない量(String、tuple元組、list、set、dictonary)を表し、すべてゼロでない数字
ヽoo False:0、None、空の量。
タスク論理表現は、論理演算子and or notを含むことができます。
if:

##################################### if ########################################
if 1<2:
  print("  ");
  print("<");
print("     ");
#demo
def func01():
  return 1;
if func01():
  print(func01());
###################################### if else ########################################
if 1<2:
  print("  ");
else:
  print("   ");
####################################### if elif ######################################
num=int(input("      :"));
if num>=90:
  print("A");
elif num>=80:
  print("B");
elif num>=70:
  print("C");
elif num>=60:
  print("D");
else:
  print("E");
######################################### if   and or not ################################
if 1 and 0:
  print("1");
else:
  print("0");#  0

if 1 or 0:
  print("1");#   1
else:
  print("0")

if not 1:
  print("1");
else:
  print("0");#   0
ループ、制御文for:

############################## for   #########################################
for str in "abcdefg":
  print(str,"Hello");
for arr in (1,2,3,4.5,5,45):
  print(arr);
################################ range()     ################################
#python2.x  ,range        
#python3.x ,range         
for x in range(10):
  print("range:",x);
#    3.x   1-10   ,  list(range(1,10))
range=list(range(1,10));
print(range);#[1, 2, 3, 4, 5, 6, 7, 8, 9]
###################################    enumerate ##############################
#   list       index value        enumerate,         
app_list = [1234, 5677, 8899]
for index,app_id in enumerate(app_list):
  print(index,app_id);
#####################################        ##############################
#str="abcde";
#print(str[0]);
#print(range[len(str)]);
#for v in range(len(str)):
#  print(str[x]);
#Traceback (most recent call last): File "E:/workSpace/pythonWork/function/com/round.py",
# line 24, in <module> for v in range(len(str)): TypeError: 'list' object is not callable
#          
#######################################      #################################
dic_map={"a":"AAAA","b":"BBBB","c":"CCCCC","d":"DDDD"};
for x in dic_map:
  print(x,dic_map[x]);

print(dic_map.items());#[('a', 'AAAA'), ('b', 'BBBB')]
for k,j in dic_map.items():
  print(k);#key 
  print(j);#Value 
#######################################      ##################################
dic_map2={1:"AAAA",2:"BBBB",3:"CCCCC",4:"DDDD"};

for k,j in dic_map2.items():
  print(k);
  print(j);
else:
   print("       (    break) ");

print("#######break"*10);

for k,j in dic_map2.items():
  print(k);
  print(j);
  if k==2:
    break;#    
else:
   print("       (    break) ");

print("#######continue"*10);

for k,j in dic_map2.items():
  if k==3:
    continue;#      
  print(k);
  print(j);
  if k==2:
    exit();#       
else:
  print("       (    break) ");
ループ、制御文while:

######################################### while    ########################################
#                  
m=0;
while True:
  print("hello");
  m+=1;
  print(m);
  if m>10:
    break;

f=10;
while f>5:
  print("Word");
  f-=1;#       

########################### while else ###########################
n=10;
while n>5:
  print("Word");
  n-=1;#       
  if n==5:
    continue;
  print("   continue",n);
else:
  print("       (    break) ");
以上のpython学習フロー制御文の詳細は、小編集が皆さんに提供した内容の全てです。参考にしていただければと思います。よろしくお願いします。