From dd64ffdf9a500987538d0ffdce7f77612e518c1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 24 Feb 2019 05:15:52 +0100 Subject: [PATCH] Numbers --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e2d08bb..0c9b2c2 100644 --- a/README.md +++ b/README.md @@ -377,8 +377,8 @@ Format * **`'X'` - HEX** -Math ----- +Numbers +------- ### Basic Functions ```python = pow(, ) # Or: ** @@ -412,9 +412,7 @@ from math import inf, nan, isinf, isnan float('inf'), float('nan') ``` - -Random ------- +### Random ```python from random import random, randint, choice, shuffle = random()