🐙

Pythonチートシート

2024/07/02に公開

参考にした本

退屈なことはPythonにやらせよう 第2版
https://www.oreilly.co.jp/books/9784873119274/

#文字列を画面に表示
print()

#ユーザーが入力した文字列を返す(python3)
#返り値は文字列
my_name = input()

#私の名前はターボ
print('私の名前は' + my_name)

#文字数
len()

#条件式がtrueのあいだループ
while

spam = 0
while spam < 5:
    print('Hello,world.')
    spam = spam + 1

#一定回数コードのブロックを実行
range()

#5回「私の名前はターボ」が表示される
print('私の名前は')
for i in range(5)
    print('ターボ')

#range() 複数の引数
range(開始値,終了値,増やす数)

#モジュールをインポート
import

print()は整数と文字列の連結は不可能

✖NG✖ 'I am' + 24 + ' years old.'
◎OK◎ 'I am' + str(24) + 'years old'.

コードブロック

if 条件:
    正なら
    else:
    誤なら

Discussion