#!/usr/bin/env python # A code line that shows the result of 7 times 3 print 7 * 3 # A line broken by backslash a = 7 * 3 + \ 5 / 2 # A list (broken by comma) b = ['a', 'b', 'c', 'd', 'e'] # A function call (broken by comma) c = range(1, 11) # Prints everything print a, b, c # For i on the list 234, 654, 378, 798: for i in [234, 654, 378, 798]: # If the remainder dividing by 3 is equal to zero: if i % 3 == 0: # Prints... print i, '/ 3 =', i / 3