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
python code 辞書の使い方 まず空のリストを作るexam_result={}→ここは[]ではない。→これはリスト。 {}は辞書要素を追加していくexam_result='田中'exam_result=35exam_result=60exam_resul... 2021.06.07 python code
python code listに追加する 削除する 変更する listの末尾に追加リスト.append(追加要素)listの指定の位置に要素を追加リスト.insert(位置,追加要素)(2,'内藤')などこの位置は追加要素の位置になる→つまり、3番目に入れたければ、2とする。listを削除するリスト.... 2021.06.05 python code