以下示例顯示了append()方法的用法。 #!/usr/bin/python3 list1 = ['C ', 'Java', 'Python'] list1.append('C#') print ("updated list : ", list1) ...
確定! 回上一頁