honey-team / ufpy

Ufpy (Useful Python) - package for Python with some useful features
https://honey-team.github.io/ufpy-website
MIT License
3 stars 3 forks source link

Number object #5

Open bleudev opened 5 months ago

bleudev commented 5 months ago

Add Number class for simplification working with integers and floats.

num = Number('1,12')
print(float(num)) # 1.12
print(int(num)) # 1

num2 = Number('1,784', 1)
print(num2) # 1,8