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

MyMemoWiki

「Python 数値の桁数を得る」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
(ページの作成:「==Python 数値の桁数を得る== [Python]{{category ロジック}} import math >>> n = 12345 >>> int(math.log10(n) + 1) 5」)
 
1行目: 1行目:
 
==Python 数値の桁数を得る==
 
==Python 数値の桁数を得る==
[Python]{{category ロジック}}
+
[[Python]]{{category ロジック}}
 
  import math
 
  import math
  >>> n = 12345
+
  >>> n = 12345
  >>> int(math.log10(n) + 1)
+
  >>> int(math.log10(n) + 1)
 
  5
 
  5

2020年2月15日 (土) 08:05時点における版

Python 数値の桁数を得る

Pythonテンプレート:Category ロジック

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