From 79c7cf8dd03d8288220a92f43f095d843b32a80a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 3 Mar 2025 18:05:20 +0100 Subject: [PATCH] Operator --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 35b6f35..b4259e5 100644 --- a/README.md +++ b/README.md @@ -2103,7 +2103,7 @@ from collections import deque Operator -------- -**Module of functions that provide the functionality of operators. Functions are ordered and grouped by operator precedence, from least to most binding. Logical and arithmetic operators in lines 1, 3 and 5 are also ordered by precedence within their own group.** +**Module of functions that provide the functionality of operators. Functions are grouped by operator precedence, from least to most binding. Functions and operators in lines 1, 3 and 5 are also ordered by precedence within a group.** ```python import operator as op ``` diff --git a/index.html b/index.html index 2f4deb3..06f1fca 100644 --- a/index.html +++ b/index.html @@ -1735,7 +1735,7 @@ CompletedProcess(args=['bc', 1) # Last element becomes first. <el> = <deque>.popleft() # Raises IndexError if deque is empty. -

#Operator

Module of functions that provide the functionality of operators. Functions are ordered and grouped by operator precedence, from least to most binding. Logical and arithmetic operators in lines 1, 3 and 5 are also ordered by precedence within their own group.

import operator as op
+

#Operator

Module of functions that provide the functionality of operators. Functions are grouped by operator precedence, from least to most binding. Functions and operators in lines 1, 3 and 5 are also ordered by precedence within a group.

import operator as op