##Find net acronyms here
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| words = [ | |
| ["", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"], | |
| ["", "eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen", "seventeen", "eighteen", "ninteen"], | |
| ["", "ten", "twenty", "thirty", "fourty", "fifty", "sixty", "seventy", "eighty", "ninty"] | |
| ] | |
| out = "" | |
| def triplets(num): | |
| msg = "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import math | |
| # let us create header | |
| hdr = 'log \t' | |
| for hd in range(0, 10): | |
| hdr += repr(hd) + '\t' | |
| for hd in range(10): | |
| hdr += repr(hd) + ' ' |
NewerOlder