From 2e8f9a045a1b127ac76703434fa53e439e839e15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 29 Dec 2018 02:26:24 +0100 Subject: [PATCH] Logarithm --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index fef5d3f..3e18533 100644 --- a/README.md +++ b/README.md @@ -373,7 +373,9 @@ from math import cos, acos, sin, asin, tan, atan, degrees, radians ### Logarithm ```python from math import log, log10, log2 +``` +```python log(x [, base]) # Base e, if not specified. log10(x) # Base 10. log2(x) # Base 2.