2021-03

Python

【Python】05.ファイルの読み書き、文字列操作、正規表現

はじめに Python勉強用のメモです。Google Colabで実行したりしてます。 ファイルの読み書き path = 'test/test.txt' f = open(path,'w') f.write('テストです。') 6 f.fl...
Python

【Python】04.関数、クラス、継承

はじめに Python勉強用のメモです。Google Colabで実行したりしてます。 関数 def say_helloworld(): print('こんにちわ、世界。') say_helloworld() こんにちわ、世界。 def c...
Python

【Python】03.制御構文(if、for、While、break、continue)

はじめに Python勉強用のメモです。Google Colabで実行したりしてます。 if weight = 100 if weight >= 100: print("ジムに通う") elif weight < 40: print("フー...
スポンサーリンク