# But typing these manually is a good exercise too 2 ** 16 2 / 5, 2 / 5.0 'hack' + 'code' S = 'Python' 'grok ' + S S * 5 S[0], S[:0], S[1:] how = 'fun' 'coding %s is %s!' % (S, how) 'coding {} is {}!'.format(S, how) f'coding {S} is {how}!' ('x',)[0] ('x', 'y')[1] L = [1, 2, 3] + [4, 5, 6] L, L[:], L[:0], L[−2], L[−2:] ([1, 2, 3] + [4, 5, 6])[2:4] [L[2], L[3]] L.reverse(); L L.sort(); L L.index(4) {'a': 1, 'b': 2}['b'] D = {'x': 1, 'y': 2, 'z': 3} D['w'] = 0 D['x'] + D['w'] D[(1, 2, 3)] = 4 list(D.keys()), list(D.values()), (1, 2, 3) in D [[]], ["", [], (), {}, None]