circuitpython/tests/basics/string_center.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
230 B
Python
Raw Normal View History

2016-05-21 17:18:53 -04:00
try:
str.center
except:
print("SKIP")
raise SystemExit
2016-05-21 17:18:53 -04:00
print("foo".center(0))
print("foo".center(1))
print("foo".center(3))
print("foo".center(4))
print("foo".center(5))
print("foo".center(6))
print("foo".center(20))