summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/string_center.py
blob: a2739201acfa7d85371efab6e3f8cb9122c4d81a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
try:
    str.center
except:
    import sys
    print("SKIP")
    sys.exit()

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