Python3 列表List Index 方法 Python3 列表List Extend 方法 Python3 比较运算符 Python3 列表List Index 方法 #!/usr/bin/python3 list1 = ['physics', 'chemistry', 'maths'] print ('Index of chemistry', list1.index('chemistry')) print ('Index of C#', list1.index('C#')) Python3 列表List Extend 方法 Python3 比较运算符