From 0afe8925631f57dfd5609849b1db03391c4afeae Mon Sep 17 00:00:00 2001 From: DanSLuong Date: Tue, 18 Dec 2018 04:20:19 -0600 Subject: [PATCH] fix(guide): Edited the formatting for readability (#32574) --- guide/english/python/data-structures/integers/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guide/english/python/data-structures/integers/index.md b/guide/english/python/data-structures/integers/index.md index a2f418e196..bf4e2b3a1d 100644 --- a/guide/english/python/data-structures/integers/index.md +++ b/guide/english/python/data-structures/integers/index.md @@ -1,6 +1,7 @@ --- title: Python Integers --- + Integers are whole numbers with no decimal point. They include negative, zero, and positive numbers. The theoretical domain for integers in python is negative infinity to infinity. In practice, integer values are limited by the amount of available memory. In Python 2, there was a distinction between **`int`**, numbers that fit in a 32 or 64 bit _C long_, and **`long`**, numbers limited by available memory. Python 3 unified the two types into just **`int`** (more info in PEP 237). @@ -47,6 +48,7 @@ Note that leading 0's for non-zero integer literals are **not allowed**: ^ SyntaxError: invalid token +## `int` creation using constructors The `int` constructor is another way to create _integer objects_. class int(x=0)