0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

At Coder 練習記録#1

Posted at

AtCoder練習記録

完全自分用です。最近atcoderを初めて感じたことは、普段使わないような関数やライブラリなどを使うことが多くて改めてPythonの勉強としてここに記録として残します。
といっても自分はまだプログラミング上級者でもないです。

問題文

Cut.0

問題文
実数
X が小数点以下第
3 位まで与えられます。

実数
X を以下の条件を満たすように出力してください。

小数点以下の部分について、末尾に 0 を付けない
末尾に過剰な小数点を付けない
制約
0≤X<100
X は小数点以下第
3 位まで与えられる

回答
回答例
x = input()
x = float(x)
print(format(x,".12g"))

format関数

使い方

format(, フォーマット指定子)

.12gの意味

.12 有効数字を最大12桁までにする
g 不要な小数点以下の0を削除し出力

0
0
0

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?