Question-47: What would be printed when you run below
print(0.0000000000000000000000000001)
- 0.0000000000000000000000000001
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering Python Certification Material
Answer: C
Exp : Its floating point number. So very large number would be printed as 1e-28
Check below how the output is generated.
print(0.0000000000000000000000000001) -> 1e-28
You can access to full explanation to question and answer from this page.