Assignment: x = 42 x, y, z = 1, 2, 3 Control Structures/Blocks: if x > 5: print "The value is ok" for x in [1,2,3,4,5]: print "This is iteration number ",x for value in range(10): print value x = 10 while x >= 10: print "x is not negative" x = x -1 Input/Output: x = input("Please enter a number: ") print "The square of that number is ", x*x Lists: name = ["Aron", "Trauring"] print name[0],name[1] name[0] = "Joe" print name[0],name[1] list = [1,2,3,4,5] print list[0:2] Dictionaries: phone = { "Aron" : 9174966240. "Anna" : 9174967890, "Boris" : 9174967777 } print phone['Aron'] phone['Aron'] = 9174966776 print phone['Aron']