[データ解析者講義]Python基本文法:if,while,for


Python基礎文法:if,while,for
📌 Control Stationの基礎構文
よりよくプログラミングするためには、基本的に制御ステーションの柔軟な使用を学ばなければならない.条件文と重複文でデータを制御できます.
  • 条件
  • if, elif, else
  • 繰り返し
  • while, for
  • 🗂 Python : if, while, for
    条件と複文を多様化するために,いくつかの例を見てみよう.
  • コードを使用して星
  • を作成
    1) ver1
    number = int(input("Input the number of 	lines : "))
    for i in rangee(number): # number는 5라고 가정.
    print("*" * (number - i))
    2) ver2
    number = int(input("Input the number of lines : "))
    for j in range(number - i):
    print("*", end = '')
    print()
    3)結果は!

  • 検索
  • ミネラルウォーター
    100以下の自然数の中から7の倍数を見つけて印刷してください.
  • [x for x in range(1, 101) if x%7==0]