From ffe8598184ff8004de07665fa54a36cf459e24bf Mon Sep 17 00:00:00 2001 From: Ahum Maitra Date: Sat, 23 Aug 2025 23:59:55 +0530 Subject: [PATCH] Doc: Add exponentiation example to tutorial introduction --- Doc/tutorial/introduction.rst | 2 ++ 1 file changed, 2 insertions(+) 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