For example: ``` >>> for i in range(0, 4): ... if i % 2 == 0: ... print(i) ... 0 2 ``` and ``` >>> print('this' ... 'is' ... 'cool') thisiscool ```