Arnaudding001 commited on
Commit
85be5b2
1 Parent(s): 92aa80b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -39,7 +39,7 @@ def convert_to_french_letters(number):
39
  if hundreds == 1:
40
  words.append('cent')
41
  else:
42
- words.append(units[int(hundreds)] + ' cent')
43
 
44
  if tens_and_units > 0:
45
  if tens_and_units < 10:
 
39
  if hundreds == 1:
40
  words.append('cent')
41
  else:
42
+ words.append(units[hundreds] + ' cent')
43
 
44
  if tens_and_units > 0:
45
  if tens_and_units < 10: