【题目名称】输出保留12位小数的浮点数 【题目来源】http://noi.openjudge.cn/ch0101/05/ Author: 潘磊 just_panleijust.edu.cn Version: 1.0 defmain():# Python中的浮点数只有float类型对应IEEE-754标准的64位双精度浮点数nfloat(input())# 输入float浮点数print(f{n:.12f},end)# 保留12位小数输出nif__name____main__:main()