Open bleudev opened 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
Add Number class for simplification working with integers and floats.