>>> while x < 10: ... x = x * 2 ...
>>> print 'abc' * x abcabcabcabcabcabcabc
pass is a placeholder, that does nothing (a "no-op").