Python 【Python】05.ファイルの読み書き、文字列操作、正規表現 はじめに Python勉強用のメモです。Google Colabで実行したりしてます。 ファイルの読み書き path = 'test/test.txt' f = open(path,'w') f.write('テストです。') 6 f.fl... 2021.03.26 Python
Python 【Python】04.関数、クラス、継承 はじめに Python勉強用のメモです。Google Colabで実行したりしてます。 関数 def say_helloworld(): print('こんにちわ、世界。') say_helloworld() こんにちわ、世界。 def c... 2021.03.18 Python
Python 【Python】03.制御構文(if、for、While、break、continue) はじめに Python勉強用のメモです。Google Colabで実行したりしてます。 if weight = 100 if weight >= 100: print("ジムに通う") elif weight < 40: print("フー... 2021.03.10 Python
Python 【Python】02.リスト、辞書、タプル はじめに Python勉強用のメモです。Google Colabで実行したりしてます。 リスト型 names = ['犬','猫','ペンギン'] type(names) list names[0] ['犬'] names[1] ['猫']... 2021.02.24 Python
Python 【Python】01.四則演算、変数、比較演算子、データ型 はじめに Python勉強用のメモです。Google Colabで実行したりしてます。 四則演算 // 足し算 // 10 + 10 20 // 引き算 // 10 - 5 5 // 掛け算 // 10 * 10 100 // 割り算 //... 2021.02.17 Python