We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3509216 commit d8e8bc6Copy full SHA for d8e8bc6
code/muki/lab03.py
@@ -113,7 +113,7 @@
113
if str(lose) in special_cases:
114
print(f'{numbah} is: {hundreds_digits[str(hundreds_place)]} {special_cases[str(lose)]}')
115
elif tens_place == 0 and hundreds_place >= 1:
116
- print(f'{numbah} is: {hundreds_digits[str(hundreds_place)]}')
+ print(f'{numbah} is: {hundreds_digits[str(hundreds_place)]} and {single_digits[str(ones_place)]}')
117
elif tens_place != 1:
118
print(f'{numbah} is: {hundreds_digits[str(hundreds_place)]} {tens_digits[str(tens_place)]}{single_digits[str(ones_place)]}')
119
elif str(lose) not in special_cases:
0 commit comments