Print every two letters pairs

Created on Dec. 24, 2016 by Julien Palard

Provide a script printing every possible pairs of two letters, only lower case, one by line, ordered alphabetically.

So your output should look like:

$ python3 solution.py
aa
ab
...
ba
bb
...
zz

Don't write down manually the whole alphabet, use string.ascii_lowercase.

  • There's no corrections yet, hit the `Submit` button to send your code to the correction bot.
  • Keyboard shortcuts:
    • Ctrl-Enter: Send your code to the correction bot.
    • Escape: Get back to the instructions tab.
(Ctrl-Enter)