summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/string_split.py
blob: f73cb4291efff6e508979f434ec2c7c7247f7463 (plain) (blame)
1
2
3
4
5
6
7
print("a b".split())
print("   a   b    ".split(None))
print("   a   b    ".split(None, 1))
print("   a   b    ".split(None, 2))
print("   a   b  c  ".split(None, 1))
print("   a   b  c  ".split(None, 0))
print("   a   b  c  ".split(None, -1))