Python3 列表List Extend 方法 Python3 列表List Count 方法 Python3 列表List Index 方法 Python3 列表List Extend 方法 #!/usr/bin/python3 list1 = ['physics', 'chemistry', 'maths'] list2 = list(range(5)) #creates list of numbers between 0-4 list1.extend(list2) print ('Extended List :', list1) Python3 列表List Count 方法 Python3 列表List Index 方法