【DX関連】初心者のPython  

学び全般
この記事は約2分で読めます。

「シニアのリスキリング」というか「シニアの手習い」という方が適切かもしれませんが、Pythonの勉強を徐々に進めています。

現在はプログラミング動画(末尾)を視聴しつつ、実際に自分でコーディングをしながら進めています。
ペースは遅いですが楽しく学習できています。しかも現時点では完全無料。

Pythonを学んでいく中でいくつか「決まり」を知ったのですが、その中で、 「=」と「==」の2つの演算子(operator)の違いが面白かったので紹介します。

折角なので、英語で表現してみます。

In Python, the assignment operator “=” is used to assign a value to a variable. In otehr words, the operator ” = ” transfers the values from the right side to the left side.

On the other hand,  the comparison operator “==” is used to test equality between two values. If the values on both sides are equal , the expression returns ‘True’ ; otherwise it returns ‘False’.

 

コメント