0

I was reading about the math.isclose module in python (link), and I understood most of it except for one thing.

What does the * mean in math.isclose(a, b, *, rel_tol=1e-09, abs_tol=0.0)?

wjandrea
  • 28,235
  • 9
  • 60
  • 81
Peter Schorn
  • 916
  • 3
  • 10
  • 20
  • That means those parameters need to have their names included when you use them: `math.isclose(1, 2, rel_tol=0)` – Maximilian Burszley Jan 17 '20 at 02:06
  • 2
    Does this answer your question? [Bare asterisk in function arguments?](https://stackoverflow.com/questions/14301967/bare-asterisk-in-function-arguments) – Ryan M Jan 17 '20 at 02:06

0 Answers0