python

python

Python 入門 ノート (7)文字列の代入  f 文字列

文字列の代入 文字列に値を埋め込んでいきましょう。 terminalを準備します。 format {} と format を使い次のように記入します。 >>>'a is {}'.format('a') 'a is a' format('a'...
python

Python 入門 ノート (6)文字列 メソッド

文字列メソッド (2) s = 'My name is Mike. Hi Mike.' print(s) My name is Mike. Hi Mike. Myから始まっているか? is_start = s.startswith('My'...
python

Python 入門 ノート (5)文字列 メソッド

文字列(その2) インデックス word = 'python' print(word) p word = 'python' print(word) n word = 'python' print(word) IndexError: stri...
python

Python 入門 ノート (4)文字列

文字列(その1) s = 'test' print(s) test print('hello') hello print("hello") hello print("I don't know") I don't know print('I ...
python

Python 入門 ノート (3)数値

計算 コマンドプロンプト(cmd) コマンドプロンプトを起動 C:\Users\user>python Python 3.9.9 (tags/v3.9.9:ccb0e6a, Nov 15 2021, 18:08:50) on win32 T...
python

Python 入門 ノート (2)

print print('Hi') Hi print('Hi' 'Mike') HiMike print('Hi' ,'Mike') Hi Mike print('Hi' ,'Mike', sep=',') Hi,Mike print('H...
python

Python 入門 ノート (1) 変数宣言

変数宣言 num = 1 print(num) 1 name = 'Mike' print(name) Mike pythonでは変数の型は自動的に判断されます。 他の言語のように var int や var str などを宣言する必要はあ...