Implement string multiplication.

This commit is contained in:
Paul Sokolovsky
2014-01-21 00:27:33 +02:00
parent 439542f70c
commit 545591a696
2 changed files with 14 additions and 0 deletions

View File

@@ -8,6 +8,8 @@ print(x)
print('123' + "456")
print('123' * 5)
# iter
print(list('str'))