for to iterate over a sequence and create a list.list1 = []
for item in range(1, 6):
list1.append(item)
list1
list2 = [item for item in range(1, 6)]
list2
for clause iterates over the sequence produced by range(1, 6). item, the list comprehension evaluates the expression to the left of the for clause and places the expression’s value in the new list. list3 = [item ** 3 for item in range(1, 6)]
list3
if Clauses¶list4 = [item for item in range(1, 11) if item % 2 == 0]
list4
for clause can process any iterable.colors = ['red', 'orange', 'yellow', 'green', 'blue']
colors2 = [item.upper() for item in colors]
colors2
colors
©1992–2020 by Pearson Education, Inc. All Rights Reserved. This content is based on Chapter 5 of the book Intro to Python for Computer Science and Data Science: Learning to Program with AI, Big Data and the Cloud.
DISCLAIMER: The authors and publisher of this book have used their best efforts in preparing the book. These efforts include the development, research, and testing of the theories and programs to determine their effectiveness. The authors and publisher make no warranty of any kind, expressed or implied, with regard to these programs or to the documentation contained in these books. The authors and publisher shall not be liable in any event for incidental or consequential damages in connection with, or arising out of, the furnishing, performance, or use of these programs.