图片解析应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
212 B

  1. from typing import List
  2. __all__: List[str]
  3. def sqrt(x): ...
  4. def log(x): ...
  5. def log10(x): ...
  6. def logn(n, x): ...
  7. def log2(x): ...
  8. def power(x, p): ...
  9. def arccos(x): ...
  10. def arcsin(x): ...
  11. def arctanh(x): ...