Files
TencentOS-tiny/components/language/micropython/tests/float/string_format_modulo3.py
2022-09-29 12:10:37 +08:00

4 lines
135 B
Python

# uPy and CPython outputs differ for the following
print("%.1g" % -9.9) # round up 'g' with '-' sign
print("%.2g" % 99.9) # round up