diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 9e06e03991bc96..b9b848114c3c17 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -63,6 +63,8 @@ For example:: 5.0 >>> 8 / 5 # division always returns a floating-point number 1.6 + >>> 2 ** 9 #2 raised to the power of 9 + 512 The integer numbers (e.g. ``2``, ``4``, ``20``) have type :class:`int`, the ones with a fractional part (e.g. ``5.0``, ``1.6``) have type