Python3 访问列表值 Python3 字符串String Isdecimal 方法 Python3 访问列表值 #!/usr/bin/python3 list1 = ['physics', 'chemistry', 1997, 2000] list2 = [1, 2, 3, 4, 5, 6, 7 ] print ("list1[0]: ", list1[0]) print ("list2[1:5]: ", list2[1:5]) Python3 字符串String Isdecimal 方法