Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 141 Bytes

join连接字符串.md

File metadata and controls

7 lines (5 loc) · 141 Bytes
>>> words = ["python", "is", "the", "most", "popular", "language"]
>>> " ".join(words)
'python is the most popular language'