x = 5 y = 13 L = ["pony", "zebra", "donkey", "unicorn"] S = "we love computer science" x < 10 and y < 10 x < 10 or y < 10 x < 10 and x > 0 x > 10 or x < 0 range(1,100,10) (5/y) > 7.0 "LOVE" in S len(S) >= 10 range(len(L)) S[8:12] + S[17:20] len(L[2])
x = 3 print 0,x for i in range(1,6): if x % 2 == 0: x = x / 2 else: x = (3*x+1)/2 print i,x
grade: 96 that's an A grade: 86 that's a B grade: 76 that's a C grade: 66 that's a D grade: 56 that's an F the average of those is: 76.0