値の型(type)に挑戦します。さあ、Pythonを勉強しましょう。初心者のための動画です。
I will challenge the type of value.
Now, let’s study Python. It is a video for beginners.
Pythonのプログラムを書いてみましょう。
Let’s write a Python program.
簡単な計算式を作りましょう。
そして、まずは、値のtypeを画面出力してみましょう。
Let’s make a simple formula.
And first, let’s output the type of the value on the screen.
コマンドプロンプトで、実行します。
eのtypeが出力されました。そのtypeはstrです。
At the command prompt, run it.
The type of ‘e’ was output. Its type is str.
つぎは、fです。
fのtypeが出力されました。そのtypeはlistです。
The following is ‘f’.
The type of ‘f’ was output. Its type is list.
つぎは、f[0]です。
f[0]のtypeが出力されました。そのtypeはintです。
The following is f[0].
The type of ‘f[0]’ was output. Its type is int.
つぎは、gです。gはf[2]÷f[1]です。答えは1.5です。
gのtypeが出力されました。そのtypeはfloatです。
The following is ‘g’. ‘g’ is ‘f[2] ÷ f[1]’. The answer is 1.5.
The type of ‘g’ was output. Its type is float.
最後に、gのtypeを str に変換してみましょう。g の計算式を変更して実行します。
Finally, let’s convert the type of ‘g’ to str. Change the formula for ‘g’ to run it.
gのtypeが出力されました。そのtypeはfloatからstrに変更されています。
The type of ‘g’ was output. Its type has been changed from float to str.
コメント
66cptz
#vom.ngo