python code 関数の戻り値を利用 defsay_hello(name):return'Hello,'+nameイメージは、say_hello()='Hello'+nameでも、これだと関数として処理ができないから、 Defreturnでつないでいるjo... 2021.09.23 python code
python code 関数 最大値max=max(リスト)ランダムな整数を返すimportrandomnum=random.randint(1,100)randint(a,b)関数は、a<=N<=bとなるいずれかの整数Nを返す。randint(1,3)と指定した場合は... 2021.09.23 python code
python code ファイルに特定の商品が含まれているか? withopen('input/lunch.csv',encoding='utf-8')asf: fornameinf: name_strip=name.strip() かならずカッコが必要 lunch=name_stri... 2021.08.05 python code
python code ファイルを出力するためのコード withopen('output/output.txt','w',encoding='utf-8')asf: f.write('hi,world\n')print('書き込み完了')リストをファイルに出力するday_duty=→リスト... 2021.07.20 python code
python code 日付を扱う基本的な方法 fromdatetimeimportdatetime datetimeモジュール中のdatetimeクラスのみを利用するnow=datetime.now() datetimeモジュールの中の関数 その地域の時刻を表す。print(n... 2021.06.30 python code
python code ファイルに、名前,値段と記載されているのを分解して表示する withopen('input/menu.csv',encoding='utf-8')asf:forrowinf:row_string=row.rstrip()右側の空白を削除columns=row_string.split(',') ",... 2021.06.30 python code
python code 文字列.split(”文字”)の使い方 文字列を”文字”で分割し、リストを作る。""の中身は空白でも大丈夫。sample='a,b,c,d,e'sample_list=sample.split(',')print(sample_list) 2021.06.30 python code
python code リストから新規に辞書に変数と数字を登録する used=とりあえず空の辞書items={}foriteminused: ifiteminitems:#キーが存在する場合は、値を1増加させる items+=1 else:#キーが存在しない場合はキーを追加して、初... 2021.06.24 python code
python code 辞書の値が数字の時の足し算 stationery_dict+=1これで、数字の部分に+1される。直感的には、stationery_dict=stationery_dict+1のほうだけど、これでも同じ答えになる。 2021.06.22 python code
python code リストの中に出てきたものの数を辞書に入れる items={'ボールペン':0, 'ノート':0, 'のり':0} 辞書を作るused= リストの中に変数が入っている それを何回使われているのか数える。foriteminused:items+=1forite... 2021.06.22 python code