python學習筆記2-列表和字典+for循環和while循環+布爾值和四種語句

列表 什麼是列表 list1 = ['小明',18,1.70] print(list1) 從列表提取單個元素 students = ['小明','小紅','小剛'] print(students[0]) 從列表提取多個元素 list2 = [5,6,7,8,9] print(list2[:]) # 打印出[5,6,7,8,9] print(list2[2:]) # 打印出[7,8.9] prin
相關文章
相關標籤/搜索