8 lines
73 B
Python
Executable File
8 lines
73 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
msg = ""
|
|
msg += "Line 1"
|
|
msg += "Line 2"
|
|
|
|
print(msg)
|