mirror of
https://github.com/Eyre-S/Coeur-Morny-Cono-python.git
synced 2024-09-27 18:56:20 +08:00
7 lines
157 B
Python
7 lines
157 B
Python
def strm(*strs: str) -> str:
|
|
output: str = ""
|
|
for i in range(len(strs)-1):
|
|
output += strs[i]
|
|
output += "\n"
|
|
output += strs[len(strs)-1]
|
|
return output |