Files
RustPython/tests/snippets/3.1.2.18.py
2018-07-09 22:06:49 +02:00

5 lines
84 B
Python

word = "Python"
assert "Jython" == "J" + word[1:]
assert "Pypy" == word[:2] + "py"