mirror of
https://github.com/micropython/micropython.git
synced 2026-01-08 05:00:26 +01:00
Implements most of str.modulo
The alternate form for floating point doesn't work yet. The %(name)s form doesn't work yet.
This commit is contained in:
@@ -20,3 +20,25 @@ try:
|
||||
print("=%s=" % (1, 2))
|
||||
except TypeError:
|
||||
print("TypeError")
|
||||
|
||||
print("%c" % 48)
|
||||
print("%c" % 'a')
|
||||
print("%10s" % 'abc')
|
||||
print("%-10s" % 'abc')
|
||||
print("%d" % 10)
|
||||
print("%+d" % 10)
|
||||
print("% d" % 10)
|
||||
print("%d" % -10)
|
||||
print("%x" % 18)
|
||||
print("%o" % 18)
|
||||
print("%X" % 18)
|
||||
print("%#x" % 18)
|
||||
print("%#X" % 18)
|
||||
print("%#6x" % 18)
|
||||
print("%#06x" % 18)
|
||||
print("%e" % 1.23456)
|
||||
print("%E" % 1.23456)
|
||||
print("%f" % 1.23456)
|
||||
print("%F" % 1.23456)
|
||||
print("%g" % 1.23456)
|
||||
print("%G" % 1.23456)
|
||||
|
||||
Reference in New Issue
Block a user