terai

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...
python

Python 入門 ノート (31)input関数

input関数 while loop と input関数 String while True:     word = input('Enter:')     if word == 'ok':         break     print(...
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...
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...
python

Python 入門 ノート (28)Noneを判定する場合

Noneを判定する場合 is_empty is None None・・・・・何も値が入っていないこと is_empty = None print(help(is_empty)) Help on NoneType object: class ...
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 ...
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...
CBAS

データ分析とビジネス ノート(6)プロジェクトマネジメント データ分析の活用とプロジェクト

3-1 既存の業務にデータ分析を活用する場合 例: 次のイベントではどのぐらいの集客が見込めるのか  顧客のクレームのうちどのような内容が多いのか  商品Aはどのような顧客によく売れているのか  平均的な顧客行動はどのようなパターンか など...
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以下である...
python

Python 入門 ノート (24)デバッガーを使って確認してみる

デバッガー(cloud9) 赤い円  ファイル内のブレークポイントを設定したい各ポイントで、行番号の左にあるガーターの空白部分を選択します。赤い円が表示されます。 デバッグを実行する 虫のアイコンをクリックして白色が緑色に変化します。 [R...