mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
5 lines
84 B
Python
5 lines
84 B
Python
word = "Python"
|
|
|
|
assert "Jython" == "J" + word[1:]
|
|
assert "Pypy" == word[:2] + "py"
|