diff --git a/README.md b/README.md index be2d71c..8f3db72 100644 --- a/README.md +++ b/README.md @@ -373,9 +373,6 @@ 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. @@ -394,9 +391,6 @@ float('inf'), float('nan') ### Random ```python from random import random, randint, choice, shuffle -``` - -```python = random() = randint(from_inclusive, to_inclusive) = choice()