Giving Numbers Ordinal Suffixes In Python
I am new to python so all help would be highly appreciated! I have learnt to use the enumerate method in my code, which gives a list tuples e.g. 'i like football' giving the word f
Solution 1:
You can utilize the natural package to do this (and more).
pip install natural
Then using this code, you can print out ordinals:
>>> from natural import number
>>> number.ordinal(3)
u'3rd'>>> number.ordinal(1234567)
u'1234567th'
Post a Comment for "Giving Numbers Ordinal Suffixes In Python"