Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
micropython/tests/float/float_format_ints.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
25 lines (23 sloc)
1.15 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Test that integers format to exact values. | |
for b in [13, 123, 457, 23456]: | |
for r in range(1, 10): | |
e_fmt = "{:." + str(r) + "e}" | |
f_fmt = "{:." + str(r) + "f}" | |
g_fmt = "{:." + str(r) + "g}" | |
for e in range(0, 5): | |
f = b * (10**e) | |
title = str(b) + " x 10^" + str(e) | |
print(title, "with format", e_fmt, "gives", e_fmt.format(f)) | |
print(title, "with format", f_fmt, "gives", f_fmt.format(f)) | |
print(title, "with format", g_fmt, "gives", g_fmt.format(f)) | |
# 16777215 is 2^24 - 1, the largest integer that can be completely held | |
# in a float32. | |
print("{:f}".format(16777215)) | |
# 4294967040 = 16777215 * 128 is the largest integer that is exactly | |
# represented by a float32 and that will also fit within a (signed) int32. | |
# The upper bound of our integer-handling code is actually double this, | |
# but that constant might cause trouble on systems using 32 bit ints. | |
print("{:f}".format(2147483520)) | |
# Very large positive integers can be a test for precision and resolution. | |
# This is a weird way to represent 1e38 (largest power of 10 for float32). | |
print("{:.6e}".format(float("9" * 30 + "e8"))) |