-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathre_sub_func.py
More file actions
68 lines (57 loc) · 2.24 KB
/
re_sub_func.py
File metadata and controls
68 lines (57 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# -*- coding:utf-8 -*-
__author__ = 'k22li'
import re
FIRST_TEN = ["zero", "one", "two", "three", "four", "five", "six", "seven",
"eight", "nine"]
SECOND_TEN = ["ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen",
"sixteen", "seventeen", "eighteen", "nineteen"]
OTHER_TENS = ["twenty", "thirty", "forty", "fifty", "sixty", "seventy",
"eighty", "ninety"]
HUNDRED = "hundred"
def checkio(number):
#replace this for solution
assert number in range(1000), 'Unsupported figure provided!'
number = int(number)
if number/100<=0: #check the digit in hundred position
hundDigit=''
else:
hundDigit=FIRST_TEN[number/100]+' '+HUNDRED
if number%100/10<=0: #如果十位数字为零
tenDigit=''
if (number%100)%10 !=0 and hundDigit!='':
lastDigit=' '+FIRST_TEN[(number%100)%10]
elif (number%100)%10 !=0 and hundDigit=='':
lastDigit=FIRST_TEN[(number%100)%10]
else:
lastDigit = ''
elif number%100/10>=2: #如果十位数字大于2
if hundDigit != '': #如果百位为空
tenDigit=' '+OTHER_TENS[number%100/10-2]
if (number%100)%10 !=0:
lastDigit=' '+FIRST_TEN[(number%100)%10]
else:
lastDigit=''
else:
tenDigit=OTHER_TENS[number%100/10-2]
if (number%100)%10 !=0:
lastDigit=' '+FIRST_TEN[(number%100)%10]
else:
lastDigit=''
else:
if hundDigit != '':
tenDigit = ' '+SECOND_TEN[(number%100)%10]
lastDigit = ''
else:
tenDigit = ''+SECOND_TEN[(number%100)%10]
lastDigit = ''
return hundDigit+tenDigit+lastDigit
#Some hints
#Don't forget strip whitespaces at the end of string
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
assert checkio(4) == 'four', "1st example"
assert checkio(133) == 'one hundred thirty three', "2nd example"
assert checkio(12) == 'twelve', "3rd example"
assert checkio(101) == 'one hundred one', "4th example"
assert checkio(212) == 'two hundred twelve', "5th example"
assert checkio(40) == 'forty', "6th example"