code-dumps/py/string-test.py
2023-07-17 14:10:28 +08:00

8 lines
73 B
Python
Executable File

#!/usr/bin/python3
msg = ""
msg += "Line 1"
msg += "Line 2"
print(msg)