python Python 入門 ノート (32)for文 と break文 continue文 for文 と break文 continue文 while文 some_list = i = 0 while i < len(some_list): print(some_list) i += 1 1 2 3 4 5 for... 2022.01.19 python
python Python 入門 ノート (31)input関数 input関数 while loop と input関数 String while True: word = input('Enter:') if word == 'ok': break print(... 2022.01.17 python
python Python 入門 ノート (30)while else文 while else 文 while count = 0 while count < 5: print(count) count += 1 0 1 2 3 4 while else count = 0 while count... 2022.01.16 python
python Python 入門 ノート (29)while文と continue文と break文 while文と continue文と break文 while count = 0 while count < 5: print(count) count += 1 0 1 2 3 4 break ループを抜ける count... 2022.01.15 python
python Python 入門 ノート (28)Noneを判定する場合 Noneを判定する場合 is_empty is None None・・・・・何も値が入っていないこと is_empty = None print(help(is_empty)) Help on NoneType object: class ... 2022.01.14 python
python Python 入門 ノート (27)値を入ってない判定をするテクニック 値を入ってない判定をするテクニック is_ok = True is_ok = True #if is_ok == True: if is_ok: print('OK!') OK! is_ok = 1 is_ok = 1 #True ... 2022.01.13 python
python Python 入門 ノート (26)inとnotの使いどころ inとnotの使いどころ in y = x = 1 if x in y: print('in') in not y = x = 1 if 100 not in y: print('not in') not in a = 1 b = 2 if... 2022.01.12 python
CBAS データ分析とビジネス ノート(6)プロジェクトマネジメント データ分析の活用とプロジェクト 3-1 既存の業務にデータ分析を活用する場合 例: 次のイベントではどのぐらいの集客が見込めるのか 顧客のクレームのうちどのような内容が多いのか 商品Aはどのような顧客によく売れているのか 平均的な顧客行動はどのようなパターンか など... 2022.01.11 CBAS
python Python 入門 ノート (25)比較演算子と論理演算子 比較演算子と論理演算子 a = 1 b = 1 aとbが等しい a = b #True aとbが異なる a != b #False aがbよりも小さい a < b #False aがbよりも大きい a > b #False aがb以下である... 2022.01.11 python
python Python 入門 ノート (24)デバッガーを使って確認してみる デバッガー(cloud9) 赤い円 ファイル内のブレークポイントを設定したい各ポイントで、行番号の左にあるガーターの空白部分を選択します。赤い円が表示されます。 デバッグを実行する 虫のアイコンをクリックして白色が緑色に変化します。 [R... 2022.01.10 python