Close

11. Python 学んだことのメモ(プログラム処理)

前回に続き、Pythonの学んだことのメモ。今回はプログラムです。
学んだ処理を表にまとめていきます。(適宜更新)

処理コマンド備考
Pythonの開始pythonPythonの開始
Python終了exit()Pythonの終了
画面出力print (表示したい値)print (‘Hello World’)文字列以外(数式・処理もOK)
pythonファイルの実行python ファイル名python sample.py
ディレクトリ移動cd 遷移先ディレクトリcd C:\Users\~~
文字列の置換処理replace[対象文字列].replace(‘置き換えたい文字列’,’置き換える文字列’)
変数の内容を埋め込み画面出力print (f'{変数値}’)print (f’私は{~~~~}です’)変数の前後に固定値を加えてもOK
文字入力戻り値 = input(引数)my_name = input(‘名前を入力してください’)入力内容を変数に代入
条件分岐(1)if 条件式1:
処理1
if score = 100:
print(‘満点です’)
条件分岐(2)if 条件式1:
処理1
elif 条件式2:
処理2
if score = 100:
print(‘満点です’)
elif score < 100 and score >= 60:
print(‘合格点です’)
条件分岐が複数ある場合は、その数だけelifを足していく
条件分岐(3)if 条件式1:
処理1
elif 条件式2:
処理2
else:
処理3
if score = 100:
print(‘満点です’)
elif score < 100 and score >= 60:
print(‘合格点です’)
else:
print(‘もう少し頑張りましょう’)

Leave a Reply

Your email address will not be published. Required fields are marked *

CAPTCHA


© 2025 ひよこの手習い(web) | WordPress Theme: Annina Free by CrestaProject.