0
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【python】pythonの関数の名前の語源

Last updated at Posted at 2020-01-09

こんにちは!python初学者のSHIMIZUです!
今回は、pythonの関数を覚えるため、関数名の語源をまとめてみました!(随時更新)

###bin()
()に十進数を入れると、二進数にして出力してくれる関数。
語源は、二進数を意味する英単語「binary」から来ています。
なるほど、binってつく、プログラミングの用語っていくつかありますが、このbinは二進数を表しているのですね!

###int()
()に値を入れると整数型にして出力してくれたり、
引数を2つとって、(数値、何進数か?)という情報を入力すると、十進数にして出力してくれる関数。
語源は、整数を意味する英単語「integer」から来てます。
ちなみに数学の世界では整数はZと表現しますが、こちらはドイツ語のZahlenから来てます。(読めない笑)

0
5
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?