I am looking to do some basic math in python. However, I am dealing with numbers such as 0.0000000001 and -0.00000000001
Are there any variables that can hold 10 decimal places with negative and positive numbers?
If not, I could multiply by 100000000000 and make it one, what is the best variable to hold numbers between -100000000000 and 100000000000?
Thanks :)