Example 1: append multiple strings to list python >>> lst = [1, 2] >>> lst.append(3) >>> lst.append(4) >>> lst [1, 2, 3, 4] >>> lst.extend([5, 6, ...
確定! 回上一頁