You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4 lines
201 B
4 lines
201 B
# check a case where rounding was suppressed inappropriately when "f" was
|
|
# promoted to "e" for large numbers.
|
|
v = 8.888e32
|
|
print("%.2f" % v) # '%.2f' format with e32 becomes '%.2e', expect 8.89e+32.
|
|
|