summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/string_center.py
blob: 40e8af4b8dc2fdeb4ffd192e5d75fa6daf36fe5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
try:
    str.center
except:
    print("SKIP")
    raise SystemExit

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))