1
0
mirror of https://github.com/Eyre-S/Coeur-Morny-Cono-python.git synced 2024-09-27 18:56:20 +08:00
Coeur-Morny-Cono-python/morny/util/str.py

7 lines
157 B
Python
Raw Permalink Normal View History

2023-05-06 23:44:08 +08:00
def strm(*strs: str) -> str:
output: str = ""
for i in range(len(strs)-1):
output += strs[i]
output += "\n"
output += strs[len(strs)-1]
2023-05-11 20:40:32 +08:00
return output