MITx 600.1x | Week 1 | Python Basics | 2. Core Elements of Programs | Exercise 5d
#!/usr/bin/python3 for letter in 'hola': print(letter) ''' MITx 600.1x | Week 1 | Python Basics | 2. Core Elements of Programs | Exercise 5d h o l a '''