Jump to content

Numerical and alphabetical suffixes: Difference between revisions

m
(Added Python example)
Line 935:
for i in range(min_abbrev, len(input_suffix) + 1):
if input_suffix[:i+1] != suffix[:i+1]:
num *= base ** power
input_suffix = input_suffix[i:]
break
num *= base ** power
num = num
input_suffix = input_suffix[i:]
break
 
Cookies help us deliver our services. By using our services, you agree to our use of cookies.