| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

Python 数値の桁数を得る

提供: MyMemoWiki
ナビゲーションに移動 検索に移動

Python 数値の桁数を得る

Python |

import math
>>> n = 12345
>>> int(math.log10(n) + 1)
5