python

python

Python 入門 ノート (34)enumerate 関数

enumerate 関数 for fruit in :     print(fruit) apple orange banana i = 0 for fruit in :     print(i, fruit)     i += 1 0 a...
python

Python 入門 ノート (34)range関数

range関数 num_list = for i in num_list:     print(i) range for i in range(10):     print(i) 0 1 2 3 4 5 6 7 8 9 開始 終了 for ...
python

Python 入門 ノート (33)for else

for else文 for fruit in :     print((fruit)) apple banana orange else for fruit in :     print((fruit)) else:     print('...
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...