Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个参数列表
args = ['abc', 'def', 'ghi'... ... ... (long list)]
我想制作一个名为“剪贴板”的字符串,其中:
clipboard = 'abc&def&ghi&... ... ... (long list)'
指针将不胜感激。
clipboard = '&'.join(args)